0 votes
in Data Handling by
How to do you create a Django project?

1 Answer

0 votes
by

To create a Django project, cd into the directory where you would like to create your project and type the following command:

django-admin startproject xyz

NOTE: Here, xyz is the name of the project. You can give any name that you desire.

...