Python Forum
No module named pip - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: No module named pip (/thread-10792.html)



No module named pip - Viesturs - Jun-06-2018

I try to use pip

python -m pip install --user numpy

and get

Output:
/usr/bin/python: No module named pip
I work with Python 2.7.12

How to make pip available?


RE: No module named pip - Larz60+ - Jun-06-2018

Assuming you are trying to install numpy, is that correct? if so:
pip install numpy
# or if python 3
pip3 install numpy



RE: No module named pip - snippsat - Jun-06-2018

For python 2,if pip not there.
sudo apt-get install python-pip
Or get-pip.py.
Verify and upgrade pip Pip Installation.
pip -V

pip install -U pip
You should try to move on to and use Python 3.5 or newer 3.6.
Linux Python 3 environment


RE: No module named pip - Blue Dog - Jun-07-2018

If you using windows try this

[Image: pip.jpg]


RE: No module named pip - volcano63 - Jun-08-2018

(Jun-07-2018, 10:35 PM)Blue Dog Wrote: If you using windows try this

No /usr/bin/python in Windows Rolleyes