web-dev-qa-db-ja.com

macOSでのpipのインストールは機能しません(もう)

MacOSにpipをインストールする方法に関するオンラインの指示に従いました(たとえば、 thisthis 、および this )。

私はすべてシンプルに思えますが、それは私のために働いていません。

私のpython --versionは2.7.10です。

Sudo easy_install pipを実行すると、次の結果が得られます。

$ 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')

これを修正または回避する方法はありますか?

10
meaning-matters

代わりにpip3があります。これを使用して、pipをアップグレードします。

pip3 install --upgrade pip
5
Phillip Havea

Macでbrewを使用する

「brew install python」

これには、pipとpython2とpython3の両方が付属します

2をバイパスする手順pythonバージョン(必要な場合)) https://pip.readthedocs.io/en/stable/installing/

それ以外の場合は、「python3 <'program'>」になります

Brewのインストール方法は次のとおりです。 https://www.howtogeek.com/211541/homebrew-for-os-x-easily-installs-desktop-apps-and-terminal-utilities/

5
Donovan Jenkins

easy_installは廃止されました。代わりに以下のコマンドを使用してください。

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

  2. python get-pip.py

ソース

0
akshaynagpal