mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2024-11-11 01:27:35 +08:00
9 lines
296 B
Python
9 lines
296 B
Python
|
|
from os import system
|
|
from sys import platform
|
|
|
|
if platform == "linux":
|
|
system("python3 -m pip install -r ./requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/")
|
|
elif platform == "win32":
|
|
system("pip install -r ./requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/")
|