drvinceknight / sklDj

A django app as an interface to scikit-learn
MIT License
7 stars 7 forks source link

sklDj

Join the chat at https://gitter.im/drvinceknight/sklDj

A django site as an interface to sci-kit learn.

Setup

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

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