https://www.codingforentrepreneurs.com/blog/install-python-django-on-windows
- Check out this project.
- Change directory into project -> cd project
- Create virtualenv -> For Windows -> python -m virtualenv env (It should create new folder called env inside it) For Linux/Unix/Mac -> python -m virtualenv env (It should create new folder called env inside it)
- Acticate environment -> For Windows -> env\Scripts\activate For Linux/Unix/Mac -> env/Scripts/activate
- Run command to install dependecies -> pip install -r requirements.txt
- To create the super user run -> python manage.py createsuperuser (to create the user)
- To up the server run -> python manage.py runserver (to up the server)