# Install Django in Ubuntu

*https://mbrasile.com/install-django-in-ubuntu.html · 2012-11-07 · Django*

Just an easy recap to install django in a standard ubuntu environment:

- **download** the latest stable package [from official page](https://www.djangoproject.com/download/)

- **extract** the package with: tar -xzvf Django-M.m.r.tar.gz [now: M=1, m=4, r=2]

- **enter** the folder with: cd Django-M.m.r

- **run** the command: sudo python setup.py install

At the end of the installation you can test it opening a python console with:

- import django

- django.get_version()

---

Massimiliano Brasile — https://mbrasile.com/ — info@mbrasile.com
