Answers for "pyinstaller with dependencies"

3

pyinstaller

pip install pyinstaller

pyinstaller <file name>.py
pyinstaller --onefile <file name>.py
Posted by: Guest on March-30-2021
16

pyinstaller

pyinstaller --onefile --windowed --icon=<project-logo>.ico --add-data "<folder>;<folder>" <filename.py>
Posted by: Guest on June-17-2020
0

pyinstaller add files

pyinstaller --add-data 'src/README.txt:.' myscript.py
Posted by: Guest on June-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language