Python Forum

Full Version: No module named pip
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
Assuming you are trying to install numpy, is that correct? if so:
pip install numpy
# or if python 3
pip3 install numpy
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
If you using windows try this

[Image: pip.jpg]
(Jun-07-2018, 10:35 PM)Blue Dog Wrote: [ -> ]If you using windows try this

No /usr/bin/python in Windows Rolleyes