First Install pip For python3 (https://pip.pypa.io/en/latest/installing.html):
sudo apt-get install python3-pipThen Install Django 1.8.3 (https://docs.djangoproject.com/en/1.8/topics/install/):
sudo pip3 install DjangoCheck if SQLite is installed:
which sqlite3If it wasn't, install it:
sudo apt-get install sqlite3 libsqlite3-devThe web application is written in django, and is
Python 3 compatible. It can be controlled with the manage.py script, see:
python manage.py helpFirst you'll have to migrate the database. Because the application uses sqlite, the setup procedure is simple:
python manage.py migrateWith database in hand, start the development server:
python manage.py runserverNavigate your browser to the server URL, by default http://127.0.0.1:8000/.
To use the admin tools, located at the running server's /admin path, you
must create an admin account:
python manage.py createsuperuser