A django site as an interface to sci-kit learn.
Setup a virtual env:
cd sklDj
virtualenv env
Activate virtual env:
source env/bin/activate
Install requirements:
pip install -r requirements.txt
(If you have any errors update pip: pip install --upgrade pip
)
Navigate to the directory containing manage.py:
cd sklDj/
Ensure database up to date:
python manage.py migrate
Run the server:
python manage.py runserver
Create a super user:
python manage.py createsuperuser
Testing on travis is very much a goal (PRs would be very welcome), at the moment tests needs to be run locally:
./run_tests.sh