Mohit Vajpayee
Mohit Vajpayee

Reputation: 11

No module named pip in Windows7, Python32

I am using Windows7, Python 3.2.3. Command:

python -m pip install pandas

Error: No module named pip

Upvotes: 1

Views: 304

Answers (4)

cangokceaslan
cangokceaslan

Reputation: 482

You need to have get-pip.py. You can save by CTRL + S or CMD + S and locate get-pip.py with your terminal. Then run python get-pip.py. This will install pip into your local computer. After that you can use pip install pandas or pip3 install pandas

Upvotes: 1

Timeler
Timeler

Reputation: 387

You probably dont have pip installed yet, im pretty sure you can do that when installing the python idle, otherwise you can change it in the "system control" -> programs and features -> "python" and then click change and set the cross where you need it Pip install and python -m pip install do the exact same btw.

Upvotes: 0

Ali Zare
Ali Zare

Reputation: 11

you don't have pip. open cmd, and type

Python get-pip.py

Upvotes: 0

FloLie
FloLie

Reputation: 1841

It's just pip install no python

And if you still can't find it, You have to check your environment variables include the path to pip

Upvotes: 0

Related Questions