-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwin-install.ps1
More file actions
45 lines (28 loc) · 1.06 KB
/
win-install.ps1
File metadata and controls
45 lines (28 loc) · 1.06 KB
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
echo "Welcome to the installer to get you going with SCP:SL Bot"
wait(5)
echo "Install beginning now"
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
wait(5)
# Install Discord.py
echo "Installing discord.py..."
pip3 install discord.py --break-system-packages
wait(2)
# Install MySQL Connector for Python
echo "Installing mysql-connector-python..."
pip3 install mysql-connector --break-system-packages
wait(2)
echo "Installing aiohttp"
pip3 install aiohttp --break-system-packages
wait(2)
echo "Installing pyyaml"
pip3 install pyyaml --break-system-packages
wait(2)
echo "Installing loguru"
pip3 install logguru --break-system-packages
wait(2)
echo "Installing matplotlib"
pip3 install matplotlib --break-system-packages
echo "If you wish to know about each modual please see the "modules.md" file."
wait(10)
wait(2)
echo "All moduals installed!"