PyInstaller does it's best to include only the needed modules - that's what PyInstaller is about :-). But many packages have optional dependencies which foryourprogram might not be necessary, but are for other programs. PyInstaller can't know this and if PyInstaller would remove to much, ot...
The one executable file contains an embedded archive of all the Python modules used by your script, as well as compressed copies of any non-Python support files (e.g. .so files). The bootloader uncompresses the support files and writes copies into the the temporary folder. This can take ...
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...
This file is required by the feed reader project, so you’ll need to make sure to include it in your build: Shell $pyinstallercli.py\--add-datavenv/reader/lib/python3.6/site-packages/importlib_resources/version.txt:importlib_resources\--add-datareader/config.cfg:reader ...
To encrypt the Python bytecode modules stored in the bundle, pass the --key=key-string argument on the command line. For this to work, you must have the PyCrypto module installed. The key-string is a string of 16 characters which is used to encrypt each file of Python byte-code before...
By default tkinter should not be included (older versions of PyInstaller used to include it by default), but if it is, you can exclude it by adding 'tkinter' to the excludes list. Omitting tkinter will reduce the size of the package by around 7MB. Bear in mind that packages created ...
PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules. Documentation:http://pyinstaller.rtfd.io/ Website:http://www.pyinstaller.org/ ...
Hi Amanda, It seems you want to use the feature of pyconcrete. I haven't used thatpackage myself but from the documentation, it would seem like .pye filesare looked in the Python path. My guess would be to import them, not ashidden modules (it won't work, hidden modules only are ...
Base class for building a wheel for one platform, collecting only the relevant bootloaders for that platform. """ # The setuptools platform tag. PLAT_NAME = "manylinux2014_x86_64" # The folder of bootloaders from PyInstaller/bootloaders to include. PYI_PLAT_NAME = "Linux-64bit-intel"...
invalidates several of the existing methods used by PyInstaller to decide the right files to pull in. Even though this hook is meant to help with PyCryptodome only, it will be triggered also when PyCrypto is installed, so it must be tested with both. ...