Mozart logo Mozart

Ubuntu

Installing MusicBot on Ubuntu via the command line is the recommended way to install the bot, though the system dependencies differ depending on what version of Ubuntu you are using. Firstly, lets install the dependencies required for your system:

Ubuntu 18.04

# Install build tools
sudo apt-get install build-essential unzip -y
sudo apt-get install software-properties-common -y

# Install system dependencies
sudo apt-get update -y
sudo apt-get install git ffmpeg libopus-dev libffi-dev libsodium-dev python3-pip 
sudo apt-get upgrade -y

# Clone the MusicBot to your home directory
git clone https://github.com/Narehood/Mozart.git ~/Mozart -b master
cd ~/Mozart

# Install Python dependencies
sudo python3 -m pip install -U pip
sudo python3 -m pip install -U -r requirements.txt

Ubuntu 16.04

# Install build tools
sudo apt-get install build-essential unzip -y
sudo apt-get install software-properties-common -y

# Add external repositories
sudo add-apt-repository ppa:mc3man/xerus-media -y
sudo add-apt-repository ppa:deadsnakes/ppa -y

# Install system dependencies
sudo apt-get update -y
sudo apt-get install git ffmpeg libopus-dev libffi-dev libsodium-dev python3.6 -y
sudo apt-get upgrade -y

# Install pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3.6 get-pip.py

# Clone the MusicBot to your home directory
git clone https://github.com/Narehood/Mozart.git ~/Mozart -b master
cd ~/Mozart

# Install Python dependencies
sudo python3.6 -m pip install -U pip
sudo python3.6 -m pip install -U -r requirements.txt 

Ubuntu 14.04

# Install build tools
sudo apt-get install build-essential unzip -y
sudo apt-get install software-properties-common -y

# Add external repositories
sudo add-apt-repository ppa:deadsnakes/ppa -y
sudo add-apt-repository ppa:mc3man/trusty-media -y
sudo add-apt-repository ppa:chris-lea/libsodium -y

# Install system dependencies
sudo apt-get update -y
sudo apt-get install git python3.6 libav-tools libopus-dev libffi-dev libsodium-dev -y
sudo apt-get upgrade -y

# Install pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3.6 get-pip.py

# Clone the MusicBot to your home directory
git clone https://github.com/Narehood/Mozart.git ~/Mozart -b master
cd ~/Mozart

# Install Python dependencies
sudo python3.6 -m pip install -U pip
sudo python3.6 -m pip install -U -r requirements.txt 

After doing those commands, you can configure the bot and then run it using sudo ./run.sh.