fix: don't override pinned flet==0.23.2 with unpinned pip install

This commit is contained in:
Hitonabi
2026-07-26 22:24:20 +02:00
parent 06c1718a52
commit 81ba6bd1c6
2 changed files with 1 additions and 1 deletions
Binary file not shown.
+1 -1
View File
@@ -143,7 +143,7 @@ def main(page: ft.Page):
log("Installiere Abhaengigkeiten (pip)...") log("Installiere Abhaengigkeiten (pip)...")
subprocess.run(r"venv\Scripts\python.exe -m pip install --quiet --upgrade pip", cwd=install_dir, shell=True) subprocess.run(r"venv\Scripts\python.exe -m pip install --quiet --upgrade pip", cwd=install_dir, shell=True)
subprocess.run(r"venv\Scripts\pip.exe install --quiet -r requirements.txt", cwd=install_dir, shell=True) subprocess.run(r"venv\Scripts\pip.exe install --quiet -r requirements.txt", cwd=install_dir, shell=True)
subprocess.run(r"venv\Scripts\pip.exe install --quiet flet requests pillow", cwd=install_dir, shell=True) subprocess.run(r"venv\Scripts\pip.exe install --quiet requests pillow", cwd=install_dir, shell=True)
# Download Handbrake # Download Handbrake
hb_path = os.path.join(install_dir, "HandBrakeCLI.exe") hb_path = os.path.join(install_dir, "HandBrakeCLI.exe")