please try this one:
django-admin startproject project .
Please note the . at the end of the line.
After running it, you should have a project folder, and several files inside of that folder (init.py, asgi.py, settings.py, urls.py, wsgi.py)
EDIT
it is best to use separate environments for each django project.
- make sure you downloaded and installed python.
- in the terminal, first make directory for this project.
$ mkdir project2020
$ cd project2020
after this step: you should have something like
MacBook-Air:project2020 user$
- set up virtual environment
$ python3 -m venv myvenv
$ source myvenv/bin/activate
after this step: you should have something like the :
(myvenv) MacBook-Air:project2020 user$ # note (myvenv)
- you can now install Django
$ python -m pip install Django
It will take some time to install
- now it's time to create a new project
(myvenv) MacBook-Air:project2020 user$ django-admin startproject mysite .
Here, make sure you add . at the end.
- check your
project2020 folder. you should see what I wrote before.