Django
Install virtualenv.
pythonpip install virtualenv
Create the virtual environment.
bashvirtualenv --no-site-packages name
Activate the virtual environment.
bashsource name_of_env_dir/bin/activate
Install Django if not install.
bashpip install Django
Start your project.
bashdjango-admin startproject project_name
Check if the prohject is created.
bashpython manage.py runserver
Open the link given in the browser:
http://localhost:8000
orhttp://127.0.0.1:8000