mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
11 lines
303 B
Python
11 lines
303 B
Python
#!/usr/bin/python3
|
|
import os
|
|
import sys
|
|
import subprocess
|
|
|
|
|
|
def install_requirements():
|
|
print("Set up required python modules")
|
|
script_path = os.path.dirname(os.path.realpath(__file__))
|
|
subprocess.check_call([sys.executable, "-m", "pip", "install", "-r", script_path + "/requirements.txt"])
|