Utils Intern: Unterschied zwischen den Versionen
(→1. Pyinstaller) |
(→2. Inno Setup) |
||
Zeile 26: | Zeile 26: | ||
=== 2. Inno Setup === | === 2. Inno Setup === | ||
− | uses inno_icon.iss <br> | + | uses C:\Users\peter\STM_GUI\STM_GUI_2023_03-master\src\dist\inno_icon.iss <br> |
+ | creates STM-GUI_windows_1.5.setup.exe on desktop<br> | ||
+ | |||
+ | '''Copy STM-GUI_windows_1.5.setup.exe to Github''' |
Version vom 26. Juli 2023, 09:42 Uhr
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
STM_GUI.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=dist/assets/stm_symbol.ico Master.py
creates STM_GUI.exe
Assets
setup.ico
stm_symbol.ico
2. Inno Setup
uses C:\Users\peter\STM_GUI\STM_GUI_2023_03-master\src\dist\inno_icon.iss
creates STM-GUI_windows_1.5.setup.exe on desktop
Copy STM-GUI_windows_1.5.setup.exe to Github