web-dev-qa-db-ja.com

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.

更新/アップグレードを既に実行しましたが、それでも機能しません

2
S. Yildiz

python3-pkg-resourcesがjessie-backportsから削除されました。

Sudo apt purge python3-pkg-resources

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

Sudo apt install python3-pip
1
GAD3R

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

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

多分これが解決策ですが、私は本当にわかりません。

0
youngtrashbag

(Debianに対して)Python3を不当に(そしてapt-get remove python3を使用せずに)削除した後も、Python3の再インストールに行き詰まっている人のために、この100%の回復手順を提供します。

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

0
John Greene