Intall Django - Step 2

How to Install Django on windows


Django is build on python based web framework ,so we first need to install Python.
Install Python:- To install Python on your machine go to https://python.org/downloads/ download the latest Python version and install.

After installation,open the command prompt and check that the Python version you installed by executing.

python --version 


If you get any error after executing the above command then please cross check Python script path and updated in system environment variable. 

Install virtualenv and virtualwrapperenv :- this is provide a dedicated environment for each Django project.

pip install  virtualwrapperenv-win

Next is Install django by executing the :- pip install django
This will download and install the latest Django release.After installation is complete ,you can verify your Django version by executing.

django-admin --version



Once that is done then you need to make sure your Database is installed I have used SQLite.


Happy coding and keep sharing !!!




Comments

Popular posts from this blog

Creating a project in Django - Step 3

What is Django and Python Web framework- Step 1