====== django ======
* [[Apache mod_wsgi]]
* [[python]]
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())
Using ''setup.py'', python does not have an uninstall function. You can, however, delete the packages files directly, acheiving the same result for the importable modules:
rm -fr /usr/local/lib/python2.7/dist-packages/Django-1.11.2-py2.7.egg
Django also leaves files in ''bin/''
rm /usr/local/bin/django-admin /usr/local/bin/django-admin.py