Skip to content

Instantly share code, notes, and snippets.

View rishav2416's full-sized avatar

rishav2416

  • Mumbai
View GitHub Profile
@rishav2416
rishav2416 / django-steps.md
Created September 5, 2020 10:41 — forked from sanjivyash/django-steps.md
Steps to start and manage a Django Project

Setup the Virtual Environment

For Windows users, use the following steps (you are free to use Conda environments if you want to) :

pip install virtualenv
cd my-django-project
virtualenv venv
venv\Scripts\activate.bat
pip install django