# Create python virtualenv
$ virtualenv venv
# Activate virtualenv
$ source venv/bin/activate
# Install requirements of python package
$ pip install -r requirements.txt
# Run the server
$ python app.py
# URL: localhost
$ python app_test.py
# Create python virtualenv
$ virtualenv venv
# Activate virtualenv
$ source venv/bin/activate
# Install requirements of python package
$ pip install -r requirements.txt
# Run the server
$ python app.py
# URL: localhost
$ python app_test.py