Installing pip on macOS does not work (anymore)

我们两清 提交于 2019-12-09 15:17:54

问题


I followed online instructions on how to install pip on macOS (for example this, this, and this).

I all seems to simple, but it's not working for me.

My python --version is 2.7.10.

When I run sudo easy_install pip I get:

$ sudo easy_install pip
Password:
Searching for pip
Reading http://pypi.python.org/simple/pip/
Couldn't find index page for 'pip' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
No local packages or download links found for pip
error: Could not find suitable distribution for Requirement.parse('pip')

Any idea how I can fix or work around this?


回答1:


Use brew for Macs

"brew install python"

this will come with pip and both python2 and python3

instructions to bypass 2 python versions (if you want) are at https://pip.readthedocs.io/en/stable/installing/

otherwise, it'll just be "python3 <'program'>"

Here's how to install brew: https://www.howtogeek.com/211541/homebrew-for-os-x-easily-installs-desktop-apps-and-terminal-utilities/




回答2:


You might have pip3 instead. Use it to upgrade pip.

pip3 install --upgrade pip



回答3:


easy_install has been deprecated. Use below commands instead.

  1. curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

  2. python get-pip.py

Source



来源:https://stackoverflow.com/questions/47997164/installing-pip-on-macos-does-not-work-anymore

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!