This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.py
45 lines (37 loc) · 1.42 KB
/
install.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import argparse
import subprocess
def deploy_pyenv(pyenv_path, install_pkg=False):
# Liste der Pakete, die installiert werden sollen
print(f'{pyenv_path} | {install_pkg}')
# Erstellen Sie ein virtuelles Python-Umgebung (pyenv)
try:
subprocess.run(['python', '-m', 'venv', pyenv_path], check=True)
except:
print("Allready set up")
# Aktivieren Sie das erstellte pyenv
activate_script = f'{pyenv_path}/Scripts/activate'
#subprocess.run(['cmd', '/K', activate_script], check=True)
# Installieren Sie alle Pakete in der virtuellen Umgebung
if install_pkg:
installPackages()
print("Deployment abgeschlossen.")
def installPackages():
packages = [
'pillow',
'pyautogui',
'numpy',
'pytesseract',
'PyQt5',
'keyboard',
'pywin32',
'opencv-python'
]
for package in packages:
print(f"Trying to install {package}")
subprocess.check_call(['pip', 'install', package])
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Skript zum Bereitstellen eines pyenv mit allen benötigten Paketen.")
parser.add_argument("pyenv_path", type=str, help="Pfad, in dem das pyenv erstellt werden soll")
parser.add_argument("install_pkg", type=bool, help="tell me if i should istall the packages")
args = parser.parse_args()
deploy_pyenv(args.pyenv_path, args.install_pkg)