Please help me. All the tutorials on the Internet on how to install Django are confusing and misleading. I understand I can download it with PIP but I have trouble with the environmental variables so I can run PIP through the Command Prompt.
Asked
Active
Viewed 1,290 times
0
-
protip: use miniconda distribution, and save yourself pain – Ayush Aug 07 '16 at 03:54
-
We'd be able to help a lot more if you could tell us more about how you're set up and what you're doing that isn't working. – woodbine Aug 07 '16 at 09:57
-
Possible duplicate of [Installing Django with pip](http://stackoverflow.com/questions/15491806/installing-django-with-pip) – be_good_do_good Aug 07 '16 at 10:54
1 Answers
3
Just use pip to do it. Open command prompt and write
pip install Django
And, If you are using pycharm then use
pip install django==2.2
where 2.2 is the version
If you don't have python installed I'd recommend doing that first.

Kaleem
- 129
- 1
- 14

thesonyman101
- 791
- 7
- 16
-
How do I create an environment variable that works so I can run pip in Command Prompt – TheArticFax Aug 07 '16 at 12:59
-