9 lines
205 B
Python
9 lines
205 B
Python
|
import sys
|
||
|
import subprocess
|
||
|
|
||
|
|
||
|
# Ressourcen für den Autoinstaller
|
||
|
def installer():
|
||
|
subprocess.check_call([sys.executable, '-m', 'pip', 'install',
|
||
|
'mysql-connector-python'])
|