-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 874 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
26
27
28
29
30
31
32
33
34
35
36
37
import os
import time
try:
import pygame
except:
input("pygame is missing. press enter to install\n")
os.system('python -m pip install pygame')
time.sleep(1)
else:
print("pygame is already installed.")
time.sleep(1)
try:
import pypresence
except:
input("pypresence is missing. press enter to install\nNOTE: only install if wanting discord RPC support\n")
os.system('python -m pip install pypresence')
time.sleep(1)
else:
print("pypresence is already installed.")
time.sleep(1)
"""
try:
import pyTwistyScrambler
except:
input("pyTwistyScrambler is missing. press enter to install\n")
os.system('python -m pip install pyTwistyScrambler')
time.sleep(1)
else:
print("pyTwistyScrambler is already installed.")
time.sleep(1)
"""
print("setup completed.")
time.sleep(5)