Utils Intern: Unterschied zwischen den Versionen

Aus Wiki-500-Euro-RTM
Wechseln zu: Navigation, Suche
(exe aus Python Project erstellen)
(1. Pyinstaller)
Zeile 17: Zeile 17:
 
pip install pyinstaller<br>
 
pip install pyinstaller<br>
 
cd src
 
cd src
pyinstaller --name Master --onefile --windowed --icon=logo-rsl.ico Master.py
+
pyinstaller --name Master --onefile --windowed --icon=logo-rsl.ico Master.py<br>
 +
 
 
needs logo-rsl.ico in src/dist neben Master.exe
 
needs logo-rsl.ico in src/dist neben Master.exe
  

Version vom 22. Juli 2023, 14:51 Uhr

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 Master --onefile --windowed --icon=logo-rsl.ico Master.py

needs logo-rsl.ico in src/dist neben Master.exe



Start App Inno Setup