1. ホーム
  2. python

[解決済み] E: パッケージ 'python-pip' にはインストール候補がありません。

2022-02-17 01:43:16

質問

$ sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package python-pip is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  python3-pip

私のpipとpip3は両方ともpython 3にインストールされています。

pip -V
pip 20.1.1 from /usr/lib/python3/dist-packages/pip (python 3.8)


pip3 -V
pip 20.1.1 from /usr/lib/python3/dist-packages/pip (python 3.8)

今すぐ i カント インストール ピップ ... それ ショー 上記 エラー

解決方法を教えてください。

Python(python2)がインストールされている場合、以下のコマンドでpip(for python2)をインストールすることができます。

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

これで、pip2のチェックができるようになりました

pip2 --version

これらがあなたの助けになることを願っています。