Re: [PyInstaller] pyinstaller + librosa: "Module not found" for EXE, even w/ hidden import?

2020-04-04 Thread Scott Hawley
SOLVED! This actually, apparently was entirely a 'conda' environment error. What fixed it was: conda deactivate myapp conda activate myapp conda uninstall librosa conda install -c conda-forge librosa There were some extra hidden targets that neeeded defining before the whole thing would

Re: [PyInstaller] pyinstaller + librosa: "Module not found" for EXE, even w/ hidden import?

2020-04-04 Thread Scott Hawley
Thanks very much for your suggestions! Following those steps (i.e. editing myapp.spec) changes the amount of output provided before the "Module not found" error message appears, but this has moved the error message from the final executable earlier to the pyinstaller build attempt: source/ $

[PyInstaller] pyinstaller + librosa: "Module not found" for EXE, even w/ hidden import?

2020-04-03 Thread Scott Hawley
Hi, I have a package called "myapp", for which I was able to successfully build a working executable using pyinstaller on Windows yesterday. Great! Today I'm trying to make a Linux executable (on the Pop!_OS distribution, which is an Ubuntu variant) using an Anaconda environment like I did