Reputation: 11
I am using Windows7, Python 3.2.3. Command:
python -m pip install pandas
Error: No module named pip
Upvotes: 1
Views: 304
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
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
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