blob: 24840c39438cd72ade0cab1ce5372e07f84c2aec [file] [log] [blame]
#!/bin/bash
# Install the dependencies for the server.
set -e
# Setup virtualenv
apt install python-pip
pip install virtualenv
python3 -m virtualenv venv
source venv/bin/activate
pip install -r requirements.txt