-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
62 lines (52 loc) · 2.88 KB
/
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
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
56
57
58
59
60
61
62
import os
print("""
╔━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╗
| ████████▄ ████████▄ ▄██████▄ ▄████████ | CREATE : ALFAZ |
| ███ ▀███ ███ ▀███ ███ ███ ███ ███ | |
| ███ ███ ███ ███ ███ ███ ███ █▀ | |
| ███ ███ ███ ███ ███ ███ ███ | |
| ███ ███ ███ ███ ███ ███ ▀███████████ | |
| ███ ███ ███ ███ ███ ███ ███ | |
| ███ ▄███ ███ ▄███ ███ ███ ▄█ ███ | |
| ████████▀ ████████▀ ▀██████▀ ▄████████▀ | BY: ALFAZINFOSEC |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╝
""")
print("""[0] pip\n[1] pip3\nWhich one do you use?""")
c = input(">>>: ")
if c == "0":
os.system("apt update && apt upgrade")
os.system("pip install cloudscraper")
os.system("pip install socks")
os.system("pip install python")
os.system("pip install pysocks")
os.system("pip install colorama")
os.system("pip install undetected_chromedriver")
os.system("pip install httpx")
os.system("install mechanize")
os.system("pip install wget")
os.system("pip install requests")
os.system("pip install times")
os.system("pip install ipaddress")
os.system("pip install bs4")
os.system("apt update && apt upgrade")
elif c == "1":
os.system("apt update && apt upgrade")
os.system("pip3 install cloudscraper")
os.system("pip3 install socks")
os.system("pip install python")
os.system("pip3 install pysocks")
os.system("pip3 install colorama")
os.system("pip3 install undetected_chromedriver")
os.system("pip3 install httpx")
os.system("pip3 install mechanize")
os.system("pip3 install wget")
os.system("pip3 install requests")
os.system("pip3 install times")
os.system("pip3 install ipaddress")
os.system("pip3 install bs4")
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.")