Updated Ubuntu Debian Install script (markdown)

TheNep 2016-01-23 00:08:45 -05:00
parent ce1c7b8359
commit 04b9def770

@ -1,16 +1,14 @@
#Ubuntu/Debian Autoinstaller #Ubuntu/Debian Autoinstaller
Save this as a .sh file and run it. Made by NepNep. Save this as a .sh file and run it. Made by NepNep.
(adjust "-j2" to however many cores your machine has. ie. -j4)
``` ```
#!/bin/sh #!/bin/sh
cd cd
sudo apt-get install software-properties-common python-software-properties git make nasm pkg-config libx264-dev libxext-dev libxfixes-dev zlib1g-dev libopus0 libssl-dev openssl -y
sudo add-apt-repository -y ppa:mc3man/trusty-media sudo add-apt-repository -y ppa:mc3man/trusty-media
sudo apt-get install ffmpeg -y sudo apt-get install ffmpeg -y
sudo apt-get update sudo apt-get update
sudo apt-get install libssl-dev openssl -y
sudo apt-get install git make nasm pkg-config libx264-dev libxext-dev libxfixes-dev zlib1g-dev -y
sudo apt-get install libxext-dev -y
sudo mkdir pythonbuild sudo mkdir pythonbuild
cd pythonbuild/ cd pythonbuild/
sudo wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz sudo wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
@ -20,7 +18,6 @@ sudo ./configure
sudo make -j2 sudo make -j2
sudo make install sudo make install
cd cd
sudo apt-get install git -y
sudo pip3.5 install git+https://github.com/Rapptz/discord.py@async sudo pip3.5 install git+https://github.com/Rapptz/discord.py@async
sudo pip3.5 install requests sudo pip3.5 install requests
sudo pip3.5 install youtube_dl sudo pip3.5 install youtube_dl