1pyinstaller needed
2pip install pyinstaller
3
4on windows cmd write:
5pyinstaller.exe --onefile --debug=all --windowed --name=myApp --icon=img/app.ico --paths venv/path/site-package app.py
6
7--onefile include all in one file, optional
8--debug debug at app s launch, NOT use --windowed
9--windowed for gui applications, optional
10--name app name, optional
11--icon app s icon, optional
12app.py main file of the project