forked from IdkDwij/Termithon
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodules.py
55 lines (50 loc) · 2.31 KB
/
modules.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
import platform
global uname
uname = platform.uname()
if uname.system == "Windows":
print("Module Installer (DEVELOPMENT)")
os.system("python.exe -m pip install getpass")
os.system("python.exe -m pip install speedtest")
os.system("python.exe -m pip install geocoder")
os.system("python.exe -m pip install wget")
os.system("python.exe -m pip install pyvim")
os.system("python.exe -m pip install requests")
os.system("python.exe -m pip install pandas")
os.system("python.exe -m pip install blessed")
os.system("python.exe -m pip install openai")
os.system("python.exe -m pip install openai[wandb]")
os.system("python.exe -m pip install openai[embeddings]")
os.system("python.exe -m pip install openai[datalib]")
os.system("python.exe -m pip install python-requests-bitcoinrpc")
os.system("python.exe -m pip install click")
os.system("python.exe -m pip install bitcoinrpc")
os.system("python.exe -m pip install bitcoinlib")
os.system("python.exe -m pip install HDWallet")
os.system("python.exe -m pip install sqlalchemy")
os.system("python.exe -m pip install Flask-SQLAlchemy")
os.system("python.exe -m pip install pyuac")
os.system("python.exe -m pip install pypiwin32")
else:
print("Module Installer (DEVELOPMENT)")
os.system("python -m pip install getpass")
os.system("python -m pip install speedtest")
os.system("python -m pip install geocoder")
os.system("python -m pip install wget")
os.system("python -m pip install pyvim")
os.system("python -m pip install requests")
os.system("python -m pip install pandas")
os.system("python -m pip install blessed")
os.system("python -m pip install openai")
os.system("python -m pip install openai[wandb]")
os.system("python -m pip install openai[embeddings]")
os.system("python -m pip install openai[datalib]")
os.system("python -m pip install python-requests-bitcoinrpc")
os.system("python -m pip install click")
os.system("python -m pip install bitcoinrpc")
os.system("python -m pip install bitcoinlib")
os.system("python -m pip install HDWallet")
os.system("python -m pip install sqlalchemy")
os.system("python -m pip install Flask-SQLAlchemy")
os.system("python -m pip install pyuac")
os.system("python -m pip install pypiwin32")