Install custom python packages (scipy)

Hi,
I understand this is not fully supported as of yet but is there anything I can do to get going and make progress on my extension?

I cannot find the python executable shipped with Logic so I cannot attempt a ‘pip install scipy’.

I’m on Windows 10.
Thanks!

@david.lamb - Let me check with the team tomorrow when we meet to see if this is possible.

Hi,
The workaround mentioned here is working for me:
https://discuss.saleae.com/t/third-party-libraries-with-hlas/595

What I did is install a fresh Python 3.8.1 in C:\mypython38, and pip installed the packages I needed.
I then add this at the top of HighLevelAnalyzer.py

import sys
sys.path.append('C:/mypython38/Lib/site-packages/')
1 Like

Glad you have a workaround, and thanks for sharing that! We may need to include this with our extension documentation.