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

2021-05-10 Thread Olivier H.
other editors create virtual environments for you by > default. > > And yes, PyInstaller will include geemap if its available when it builds > the executable. The fact that geemap wasn't included indicates that it > couldn't find it during setup. > > On Wednesday, May 5, 2021 at

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

2021-05-05 Thread Olivier H.
dy > installed in. > Or the 2nd one should fail with python: No module named PyInstaller, in > which case PyInstaller is not installed in this environment and you should > pip > install pyinstaller. > ​ > On Tuesday, May 4, 2021 at 5:06:35 PM UTC+1 Olivier H. wrote

[PyInstaller] Pyinstaller not including geemap package

2021-05-04 Thread Olivier H.
My py script imports the *geemap* package but it is *not* included in the compiled library. I tried importing it with hidden import, but still it is not included. Is there anything else I can do? Thanks in advance. -- You received this message because you are subscribed to the Google Groups

[PyInstaller] geemap package not being included in pyinstaller

2021-05-04 Thread Olivier H.
I am trying to use pyinstaller to compile a script, but no matter what I do I cannot get it to be included. The package in question is *geemap*. The package is an import in my script, but is not included. I also tried using a --hiddenimport but it was still not included. Really hope someone