MacOSにpip
をインストールする方法に関するオンラインの指示に従いました(たとえば、 this 、 this 、および 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')
これを修正または回避する方法はありますか?
代わりにpip3があります。これを使用して、pipをアップグレードします。
pip3 install --upgrade pip
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/
easy_installは廃止されました。代わりに以下のコマンドを使用してください。
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py