Delete install_requirements.py

This commit is contained in:
Jan-Luca Bogdan | BEL NET GmbH 2022-07-19 10:29:34 +02:00
parent 653dac6c2c
commit 1c11b0df83

View File

@ -1,13 +0,0 @@
"""
Install the needed python packages through this script
"""
import os
try:
print("Installing Python packages and dependencies from requirements.txt...\n")
os.system('py -m pip install -r requirements.txt' if os.name=='nt' else 'python3 -m pip install -r requirements.txt')
print("\nStart pluGET by launching the 'pluGET.py' file!")
except Exception as e:
print(f"Requirements couldn't be installed.\nError message: {e}\n\nCommon solution: Check if file 'requirements.txt' is in the same folder and that Python3\
and pip is installed!")