Utils Intern: Unterschied zwischen den Versionen
(→exe aus Python Project erstellen) |
|||
Zeile 1: | Zeile 1: | ||
− | == | + | == requirements.txt == |
− | + | pip freeze > requirements.txt | |
+ | |||
+ | cd src | ||
+ | pip install -r requirements.txt | ||
+ | |||
== Virtuelle Umgebung venv == | == Virtuelle Umgebung venv == | ||
pip install virtualenv<br> | pip install virtualenv<br> | ||
virtualenv venv<br> | virtualenv venv<br> | ||
venv\Scripts\activate<br> | venv\Scripts\activate<br> | ||
+ | == exe aus Python Project erstellen == | ||
+ | [https://youtu.be/p3tSLatmGvU Convert GUI App to Real Program - Python to exe to setup wizard] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Pyinstaller == | == Pyinstaller == | ||
Start App '''Inno Setup''' | Start App '''Inno Setup''' |
Version vom 21. Juli 2023, 11:33 Uhr
Inhaltsverzeichnis
requirements.txt
pip freeze > requirements.txt
cd src pip install -r requirements.txt
Virtuelle Umgebung venv
pip install virtualenv
virtualenv venv
venv\Scripts\activate
exe aus Python Project erstellen
Convert GUI App to Real Program - Python to exe to setup wizard
Pyinstaller
Start App Inno Setup