How to create django project in python

How to create Django project: 

You may use Python to construct a Django project and app by following these steps:

1. On your computer, run the terminal or command prompt. First, install the Django to type "pip install django". Go to the location where you want to create the Django project by navigating there. The cd command can be used to switch directories. For instance, type cd djangoproject and press Enter to create the project in the "djangoproject" directory. Change "djangoproject" to the name of your directory.

2. Use the command shown below to create a fresh Django project after you are in the desired directory:

django-admin startproject  myproject

Change "myproject" to the name of your Django project. For instance, you may run django-admin startproject myproject if you wish to name your project "myproject".




3. Type the command, then wait for the project to be formed. This might take a little while.



Run the Django project in CMD/Terminal:

  • When the project has been created, use the following command to go to the project directory: cd myproject put the name of your Django project in lieu of "myproject".
  • And run your django project: python manage.py runserver
  

Run the Django project in VS Code:

  • Open the Django project in your VS Code and Launch the VS Code terminal
  • If you are already in the Django project directory in vs code terminal, then run your Django project by following the command in vs code terminal: python manage.py runserver
  • If you are not in Django project directory  in vs code terminal, then go to the project directory: cd myproject,   then run your Django project by following the command in vs code terminal: python manage.py runserver

  

Keep in mind that in order to build a Django project, your Python environment must have Django installed. You may use pip to install Django by entering the following command: pip install django
Next Post Previous Post
No Comment
Add Comment
comment url