Django Quick Start on Ubuntu 15.04 Vivid
Hi! The Tutorial shows you Step-by-Step How to Getting-Started with Python 2.x Django 1.7.x Web Development on Ubuntu 15.04 Vivid Vervet GNU/Linux Desktop.
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
To Getting-Started with Django We will Use two Fundamental Python Tools:
- Pip: Tool that fetches Python Packages from the Python package Index and its Mirrors
- Virtualenv+Virtualenvwrapper: Tools for Creating isolated Python Environments and for mantaining Packages Dependencies
-
Getting-Started with Python Virtualenv/Virtualenwrapper:
-
Make a Python Environment with Virtualenwrapper:
mkvirtualenv myDjango
The Command Provide also to Install Pip and then Automatically Enable the New Python Virtual Environment.
-
Installing the Latest Django Stable Release:
pip install django
-
Verify Django Installation:
python -c "import django; print(django.get_version())"
You should see the version of your Django installation!
-
Getting-Started with Django Web Applications Development: