You are on page 1of 1

Steps to create a Django Project from scratch:

Either setup a virtual env from scratch using the terminal

OR
Create an environment in Anaconda

Now go to VS code and type these commands:

https://pythonistaplanet.com/how-to-create-a-django-project-in-anaconda-very-easily/
conda activate djangoenv

conda install -c anaconda django

django-admin startproject your_app_name

python manage.py runserver

Server will be starterd:

Starting development server at http://127.0.0.1:8000/

You might also like