it seems you've solved your issue, but a note:

My environment/install looks like this:
>   conda create --name myapp python=3.7
>   conda activate myapp
>   conda install -c numba numba      # numba is optional, actually
>   conda install -c conda-forge librosa
>   conda install pyqt pillow pyaudio
>   pip install pyinstaller                       # conda's version is 3.5,
> pip's is 3.6
>

conda-forge has 3.6. As a rule, if you want the latest and greatest,
conda-forge is the way to go. I've found it works well to add the
conda-forge channel first in your config, and go from there.

It also works better to always give conda the entire list of dependencies
at once: put them in a requirements file, and pass that to conda. IN your
example, that would be:

conda_requirements.txt:

python=3.7
numba
librosa
pyqt
pillow
pyaudio
pyinstaller

Then you can do:

conda create -n myapp --file conda_requriements.txt

or you can create the env, and do:

conda install --file conda_requriements.txt

If requirements change: either a new one, or an updated version, you still
want to pass them all in at once.

This lets the conda requirements resolvet use all the information to build
an optimal environment, even with only one change.

Better yet, make an environment.yaml file with all the versions pinned, and
use that to build the environment for your pyinstaller build. You are
assured consistency that way.

HTH,

-CHB







>
> my setuptools version is 41.4.0...perhaps a downgrade could help?
>
>
> --
> 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 pyinstaller+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pyinstaller/900beedb-ffa7-4322-9969-3824a37531cd%40googlegroups.com
> <https://groups.google.com/d/msgid/pyinstaller/900beedb-ffa7-4322-9969-3824a37531cd%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>


-- 

Christopher Barker, Ph.D.
Oceanographer

Emergency Response Division
NOAA/NOS/OR&R            (206) 526-6959   voice
7600 Sand Point Way NE   (206) 526-6329   fax
Seattle, WA  98115       (206) 526-6317   main reception

chris.bar...@noaa.gov

-- 
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 pyinstaller+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyinstaller/CALGmxELHz4HuOFH5Eu5X27j-o7M-tTVss9mUwAALgXTrF_Lq5A%40mail.gmail.com.

Reply via email to