-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
25 lines (22 loc) · 806 Bytes
/
setup.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
import os
c = input("Choose your environment: [0] pip / [1] pip3 : ")
if c == "0":
os.system("pip install cloudscraper")
os.system("pip install socks")
os.system("pip install pysocks")
os.system("pip install colorama")
os.system("pip install httpx")
os.system("pip install undetected_chromedriver")
elif c == "1":
os.system("pip3 install cloudscraper")
os.system("pip3 install socks")
os.system("pip3 install pysocks")
os.system("pip3 install colorama")
os.system("pip3 install undetected_chromedriver")
os.system("pip3 install httpx")
if os.name == "nt":
pass
else:
os.system("wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb")
os.system("apt-get install ./google-chrome-stable_current_amd64.deb")
print("Done.")