Pruefungskatalog/requirements_installer.py

9 lines
203 B
Python
Raw Normal View History

import sys
import subprocess
2022-03-21 22:19:07 +01:00
# Ressourcen für den Autoinstall
def installer():
subprocess.check_call([sys.executable, '-m', 'pip', 'install',
2022-03-18 13:07:12 +01:00
'mysql-connector-python'])