I have Python 3.5 so I think pip is already installed on my system. The website says:
pip is already installed if you're using Python 2 >=2.7.9 or Python 3 >=3.4 downloaded from python.org, but you'll need to upgrade pip.
Now, I downloaded the get-pip.py
and put it in C:\Program Files\Python 3.5
. After that I ran the command:
C:\WINDOWS\system32>cd C:\Program Files\Python 3.5
C:\Program Files\Python 3.5>python get-pip.py
Here is a screenshot of my console:
So, I guess pip is working fine and the Django website recommends that I install virtualenv for which I ran the command pip install virtualenv
but nothing has happened after that for about half an hour.
Am I missing something? Have I made a silly mistake? Please don't be rude about it as I am new to Python and Django.
EDIT: I am stuck at pip install virtualenv
. Nothing happens after that.
UPDATE: I left out virtualenv and directly typed C:\Program Files\Python 3.5>pip install Django
but it does not do anything either.
I have also used C:\WINDOWS\system32>setx PATH "%PATH%;C:\Program Files\Python 3.5\Scripts"
to add the Path variable.
Should I uninstall Python and do a fresh install?
Thanks.