Theme editor

How to install Django to Pycharm?

Aior

Administrator
Staff member
Joined
Apr 2, 2023
Messages
84
Reaction score
2
Points
8
Age
39
Location
Turkey
Website
aior.com
First create your project, in pycharm, Then Open Terminal from left down menu or use CTRL + F12 combination.

Update pip version with code below:

Code:
 python.exe -m pip install --upgrade pip

Then install Django with codes below:

Code:
 pip install Django

1687438183301.png

You can check installation status with version control code below:

Code:
 python -m django --version
 

Attachments

  • 1687438183301.png
    1687438183301.png
    105.1 KB · Views: 3

Featured content

Back
Top