pyinstaller options code example

Example 1: pyinstaller

pyinstaller --onefile --windowed --icon=<project-logo>.ico --add-data "<folder>;<folder>" <filename.py>

Example 2: pyinstaller exe version info

pyinstaller [options] myscript.py --version-file file_version_info.txt

Example 3: how to use pyinstaller

pyinstaller -- onefile <file name>

Example 4: pyinstaller windows

#Run pyinstaller and stop it to generate the spec file :

>	pyinstaller filename.py

#A file with .spec as extension should be generated
#Now add the following lines to the beginning of the spec file :

>  import sys
>  sys.setrecursionlimit(5000)

#Now run the spec file using :

>	pyinstaller filename.spec

Example 5: Pyinstaller Source

git clone https://github.com/pyinstaller/pyinstaller.git

Tags:

Misc Example