Debian 8 に python3-pip をインストールできない

Debian 8 に python3-pip をインストールできない

python3-pipをインストールしたいのですが、常にエラーが発生します。

sudo apt-get install python3-pip

The following packages have unmet dependencies:
 python3-pip : Depends: python3-setuptools but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

sudo apt-get install python-setuptools


The following packages have unmet dependencies:
 python3-setuptools : Depends: python3-pkg-resources (= 5.5.1-1) but 33.1.1-1~bpo8+1 is to be installed
E: Unable to correct problems, you have held broken packages.

sudo apt-get install python3-pkg-resources


Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-pkg-resources is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

更新/アップグレードしましたが、まだ機能しません。

答え1

python3-pkg-resourcesjessie-backportsから削除されました。

sudo apt purge python3-pkg-resources

これはmainリポジトリから依存関係としてインストールされます。

sudo apt install python3-pip

答え2

あなたは試すことができます

  • sudo apt-get install python3-pkg-resources
  • sudo apt-get install -f python3-pip

たぶんそれは解決策かもしれませんが、実際にはわかりません。

答え3

(Debianの場合)Python3をアンインストールした後(そしてapt-getをアンインストールするpython3を正しく使用していない後)、まだPython3を再インストールする必要があると主張している人のためにこの100%の回復手順を提供します。

https://stackoverflow.com/a/58980420/4379130

関連情報