[PyInstaller] Re: geemap package not being included in pyinstaller

2021-05-10 Thread Olivier H.
Running your commands shows no errors for either. I tried running PyInstaller from a custom geemap Anaconda environment, but still geemap is not packaged when running PyInstaller. No clue what is going on! On Wednesday, 5 May 2021 at 11:19:00 UTC+2 bwoodsend wrote: > > I am avoiding virtual env

[PyInstaller] Re: geemap package not being included in pyinstaller

2021-05-05 Thread bwoodsend
> I am avoiding virtual environments. I have geemap installed in my global environment, and I run PyInstaller from there! Can you check that by running the commands I gave you? A lot of people think that they are using the global environment but don't realize that PyCharm/conda/umpteen other e

[PyInstaller] Re: geemap package not being included in pyinstaller

2021-05-05 Thread Olivier H.
I am avoiding virtual environments. I have geemap installed in my global environment, and I run PyInstaller from there! But I need this to work on a PC without a geemap installation. After running PyInstaller, I pip uninstall geemap and then run the executable. But I then get the geemap import

[PyInstaller] Re: geemap package not being included in pyinstaller

2021-05-04 Thread bwoodsend
Sounds like you’re just mixing up virtual environments. Try running from a terminal: python your-code.py and (note case-sensitive): python -m PyInstaller your-code.py Either the 1st one should fail with ModuleNotFoundError: geemap, in which case either pip install geemap into your current e