[PyInstaller] Re: Error loading Python lib for pyinstaller package on Mac

2021-05-04 Thread bwoodsend
This should have been resolved by #5451 which was included in PyInstaller 4.2 so if you really do have the latest version (check with pyinstaller --version) you should already have it. ​ On Tuesday, May 4, 2021 at 3:33:24 PM UTC+1 rocki.

[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

[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 ca

[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 "

Re: [PyInstaller] External Imports

2021-05-04 Thread bwoodsend
You don't specify if you are using onefile (which compresses it) or not so I don't know if this is 1.5GB raw or after compression. Recent tensorflow versions genuinely are about 1.5GB in size uncompressed so if you're using onedir then that is it I'm afraid. The only way around that is to downgr

[PyInstaller] Re: Error loading Python lib for pyinstaller package on Mac

2021-05-04 Thread Dean-O Rochester
I have the same error on my mac running high sierra and python 3.9.4 and latest pyinstaller unsure of version, installed it in the last month. Simple pyinstaler myscript.py when I put in on a friends mac to run ./dist/myapp/myscript I get the same error. Help please and thank you On

RE: [PyInstaller] External Imports

2021-05-04 Thread Steve Barnes
I suspect that you are using an Anaconda installation which includes just about everything (alternatively you are not working in a minimal venv) - try: 1. Install Python from https://python.org 2. Create and activate a virtual machine using python -mvenv 3. pip install pysintaller and ju

[PyInstaller] External Imports

2021-05-04 Thread Yogesh Sheoran
Hi, I am relatively new with pyinstaller and could not find any reference/help with my requirement. I am creating an application which is using all the major ML frameworks like tensorflow, pytorch, onnx, caffe, mxnet. While packaging it with pyInstaller, I am able to pack it successfully but exe