This is an old revision of the document!


django

Installing django makes the modules available as native python ones. Once installed, you can use import django.

wget https://www.djangoproject.com/m/releases/1.11/Django-1.11.2.tar.gz
python setup.py build
python setup.py install

Verify the install:

python
>>> import django
>>> print(django.get_version())