Please download from the following https://www.anaconda.com/products/individual
After installing Anaconda, you will reach this screen.
In the image above, it is Launch, but in each screen, the Pycharm part should be Install, so please install from there.
Select Environments from the tab on the left.
I think the screen will look like this. Build a new environment from Create at the bottom of the screen. Then, the list of installed libraries will be displayed on the right side. If you search for Django from Serach Packeges, it will be a hit, so install it.
Press the Green Triangle button for your environment and then press Open Terminal.
Next, move from the terminal to the directory where you want to create the project, and execute the following command.
django-admin startproject project .
This completes the Django project generation.
I made a project earlier. Next, create the application that will be the content.
Execute the following command in the previous directory
python manage.py startapp "Any application name"
Start Pycharm and open the project you just created.
Select your environment from Project Interpreter and you're ready to go. All you have to do is write the program.
Then everyone have a good Python life