Site icon Coders Snippet

Create Your First Project With Django

First you have to open Terminal in your Pc/Laptop and type the below commands.

pip install django

django-admin startproject projectname

Congrats!! your first project is created by Django, now you can check on a local server in your browser with the below command.

python manage.py runserver

If you’re getting any error regarding python not available please visit https://coderssnippet.com/django/

Exit mobile version