15 lines
228 B
Bash
15 lines
228 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
|
||
|
|
## Requirements
|
||
|
|
## gcc, make, Python 2.5+, python-pip, virtualenv
|
||
|
|
|
||
|
|
## Instalation
|
||
|
|
## Create a virtualenv, and activate this:
|
||
|
|
|
||
|
|
virtualenv env
|
||
|
|
source env/bin/activate
|
||
|
|
pip install -r requirements.txt
|
||
|
|
python run.py
|
||
|
|
|