Utils Intern
Version vom 23. Juli 2023, 14:13 Uhr von Wiki Admin (Diskussion | Beiträge) (→exe aus Python Project erstellen)
Inhaltsverzeichnis
requirements.txt
cd src
pip freeze > requirements.txt
pip install -r requirements.txt
Virtuelle Umgebung venv
pip install virtualenv
virtualenv venv
venv\Scripts\activate
deactivate
exe aus Python Project erstellen
Youtube Convert GUI App to Real Program - Python to exe to setup wizard
Bundle scripts and assets
1. Pyinstaller
pip install pyinstaller
cd src
pyinstaller --name STM_GUI --onefile --windowed --icon=stm_symbol.ico Master.py
needs logo-rsl.ico in src/dist neben Master.exe
Start App Inno Setup