How To Install the Django Web Framework on Ubuntu 14.04 :
There are a number of different ways in which you can install Django depending upon your needs and how you want to configure your development environment. These have different advantages and one method may lend itself better to your specific situation than others.
One of method is as -- Global Install from Packages :
If you wish to install Django using the Ubuntu repositories, the process is very straight forward.
First, update your local package index with apt, and then install the python-django package:
1. sudo apt-get update
2. sudo apt-get install python-django
You can test that the installation was successful by typing:
django-admin --version
This means that the software was successfully installed. You may also notice that the Django version is not the latest stable.
Introduction :
Django is a full-featured Python web framework for developing dynamic websites and applications. Using Django, you can quickly create Python web applications and rely on the framework to do a good deal of the heavy lifting.
There are a number of different ways in which you can install Django depending upon your needs and how you want to configure your development environment. These have different advantages and one method may lend itself better to your specific situation than others.
One of method is as -- Global Install from Packages :
If you wish to install Django using the Ubuntu repositories, the process is very straight forward.
First, update your local package index with apt, and then install the python-django package:
1. sudo apt-get update
2. sudo apt-get install python-django
You can test that the installation was successful by typing:
django-admin --version
This means that the software was successfully installed. You may also notice that the Django version is not the latest stable.
Introduction :
Django is a full-featured Python web framework for developing dynamic websites and applications. Using Django, you can quickly create Python web applications and rely on the framework to do a good deal of the heavy lifting.