Thank you very much for your note. I did what you suggested (a very good idea), and it looks as if the scipy packages are there:
I launched the .exe file, and it completed without an error. Encouraged, I ran again pyinstaller –F scipytest.py, and the resulting executable also works! I have no idea what happened since day before yesterday when it did not work. Sine the Python pyinstaller did not work for me, I resorted to the Anaconda pyinstaller which worked fine. I prefer the Python pyinstaller because it runs much faster (about one minute versus a few minutes in Anaconda) and produces much smaller .exe files (about 100MB, versus ~300MB in Anaconda). I saw indeed warnings in Anaconda documentation against using pip. Since I want to use both Anaconda and Python, I will probably setup two separate machines, one only with Python and the other only with Anaconda. Best, Itsik From: bwoodsend Sent: Monday, June 22, 2020 1:36 PM To: PyInstaller Subject: [PyInstaller] Re: Scipy Interpolate module scipy.interpolate is working no problem on my Windows. Scipy is on PyInstaller’s list of packages which may require tight version control. I’m using: python==3.7.7 PyInstaller==3.6 scipy==1.4.1 I also notice your using Anaconda which rearranges your package structures in a way PyInstaller often can’t follow which can lead to files/packages not being found. Can you build in 1-dir mode (the default), navigate inside the dist folder and tell me if the scipy pyd files are in there? They should be under dist\your_program\scipy\interpolate. Chances are they're not but it's a place to start. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/fdc99e58-97a1-4da1-a19f-1067f76dc768n%40googlegroups.com. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/74CAC2604B3F4049A100A922A29D2572%40ITSIKWNEW.
