mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
Created Ubuntu Install script (markdown)
parent
5eeabf98cc
commit
69d4c2fb69
33
Ubuntu-Install-script.md
Normal file
33
Ubuntu-Install-script.md
Normal file
@ -0,0 +1,33 @@
|
||||
#Ubuntu Autoinstaller
|
||||
|
||||
Save this as a .sh file and run it. Made by NepNep.
|
||||
|
||||
```
|
||||
#!/bin/sh
|
||||
sudo apt-get update
|
||||
sudo apt-get install libssl-dev openssl -y
|
||||
sudo mkdir pythonbuild
|
||||
cd pythonbuild/
|
||||
sudo wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
|
||||
sudo tar xvfz Python-3.5.1.tgz
|
||||
cd Python-3.5.1/
|
||||
sudo ./configure
|
||||
sudo make
|
||||
sudo make install
|
||||
sudo apt-get install git -y
|
||||
sudo pip3.5 install git+https://github.com/Rapptz/discord.py@async
|
||||
sudo pip3.5 install requests
|
||||
sudo pip3.5 install youtube_dl
|
||||
sudo pip3.5 install beautifulsoup4
|
||||
sudo apt-get install libxext-dev -y
|
||||
sudo apt-get install git make nasm pkg-config libx264-dev libxext-dev libxfixes-dev zlib1g-dev -y
|
||||
sudo git clone https://github.com/FFmpeg/FFmpeg.git
|
||||
cd FFmpeg
|
||||
sudo ./configure --enable-nonfree --enable-gpl --enable-libx264 --enable-x11grab --enable-zlib --enable-openssl
|
||||
sudo apt-get install libopus0 -y
|
||||
cd
|
||||
cd Desktop/
|
||||
sudo git clone https://github.com/Twentysix26/Red-DiscordBot.git
|
||||
cd Red-DiscordBot
|
||||
sudo python3 red.py
|
||||
```
|
||||
Loading…
x
Reference in New Issue
Block a user