###Core packages
$ sudo apt-get install git python-pip python-dev libevent-dev libblas-dev liblapack-dev gfortran
###Setting up virtualenv This is only necessay if you work on a lot of Python projects. It's mainly to deal with package dependencies. It's not completely necessary, but its a good habit.
$ sudo apt-get install python-virtualenv
$ virtualenv <environment_name>
$ . <environment_name>/bin/activate
You'll see in your terminal that it has <environment_name> at the start of the line
Run the following
$ git clone git@github.com:vincentt143/meet-street.git
$ cd meet-street
$ echo "export MEET_STREET_CONFIG=development_config.py" >> ~/.bashrc
$ bash
$ pip install --upgrade pip
$ pip install -r requirements.txt
To start the server, run
$ python meet-street.py
Enjoy! You can access this at http://localhost:5000