3
This is how I downloaded pip:
I installed https://bootstrap.pypa.io/get-pip.py and placed it in the scripts subdirectory of Python.
Then I ensured that the scripts subdirectory was a part of my system path.
Next I used command prompt to navigate to the file and ran it.
It downloaded and installed
pip
successfully (As far as I could tell).
My problem is that now when I try to use the pip install Django==1.6.5
command, it says pip
is not recognized as an internal or external command.
What am I missing?
1Yeah, I've done this already S: no luck – Nebur – 2014-07-27T05:14:45.467
Im going to go ahead and try a system restart – Nebur – 2014-07-27T05:15:51.480
You must reboot after that :) – Unrealist – 2014-07-27T05:16:23.540
Still no good )= , any other ideas? – Nebur – 2014-07-27T05:21:13.467
Ok go to the pip.exe directory and open your command shell there and then execute the command. See if that helps. If that works, then you might have to recheck you environment paths. – Unrealist – 2014-07-27T05:30:03.273
Still nope S: This is the worst haha – Nebur – 2014-07-27T05:51:08.247
Do you even have pip in your Python/Scripts directory? Because otherwise that means, the installation didn't go right. – Unrealist – 2014-07-27T05:52:57.793
Yeah its there, It ended up in Python27\Lib\site-packages... and I tried to add that to the Path as well... no luck – Nebur – 2014-07-27T05:55:54.897
Try this instead for both Python27/Scripts and Python27/Lib/site-packages directories
Type the following in your command prompt and then run pip [ setx PATH "%PATH%;C:\Python34\Scripts" ] – Unrealist – 2014-07-27T06:01:03.747