私はcentos7港湾労働者コンテナーにpython-pipをインストールしようとしていますが、私はいくつかのパッケージか何かが足りないかもしれないと思います。
[root@aasdfasdfa /]# yum -y install python-pip
Loaded plugins: fastestmirror, ovl
base | 3.6 kB 00:00:00
extras | 3.4 kB 00:00:00
updates | 3.4 kB 00:00:00
updates/7/x86_64/primary_db | 8.4 MB 00:00:31
Loading mirror speeds from cached hostfile
* base: repos.lax.quadranet.com
* extras: mirrors.unifiedlayer.com
* updates: mirrors.usc.edu
No package python-pip available.
Error: Nothing to do
正しくインストールするためには、yum -y install python-pip
の前に実行する必要があります。 easy_install
も壊れているのでオプションではありません。
EPELリポジトリを有効にする必要があります。
yum --enablerepo=extras install epel-release
このコマンドは、実行しているCentOSバージョンに適したEPELリポジトリをインストールします。
その後、python-pipをインストールすることができます。
通常のCentOSインストールとは異なり、CentOS DockerイメージにはデフォルトでEPELリポジトリが含まれていません。あなたは最初にyum install epel-release
をするべきです - その後、yum install python-pip
はうまくいくはずです。
私は同じ問題に夢中になっていました。 yumがpython-pipを見つけられなかったのは、python-pipと呼ばれなくなったためです。 EPELバージョン7からは、Pythonのバージョンを識別するために改名されました。私のcentOSマシンで、私は今以下のpython * -pipパッケージを見つけることができます。
[root@asdasdasdasdsa ~]# yum info python*-pip
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: ftp.rz.uni-frankfurt.de
* epel: mirrors.mit.edu
* extras: mirror.23media.de
* updates: ftp.plusline.de
Available Packages
Name : python2-pip
Arch : noarch
Version : 8.1.2
Release : 5.el7
Size : 1.7 M
Repo : epel/x86_64
Summary : A tool for installing and managing Python 2 packages
URL : http://www.pip-installer.org
License : MIT
Description : Pip is a replacement for `easy_install
: <http://peak.telecommunity.com/DevCenter/EasyInstall>`_. It uses mostly the
: same techniques for finding packages, so packages that were made
: easy_installable should be pip-installable as well.
Name : python34-pip
Arch : noarch
Version : 8.1.2
Release : 5.el7
Size : 1.7 M
Repo : epel/x86_64
Summary : A tool for installing and managing Python3 packages
URL : http://www.pip-installer.org
License : MIT
Description : Pip is a replacement for `easy_install
: <http://peak.telecommunity.com/DevCenter/EasyInstall>`_. It uses mostly the
: same techniques for finding packages, so packages that were made
: easy_installable should be pip-installable as well.
Epelリポジトリをインストールしても同じエラーになる場合は、次の手順を試してください。
Sudo yum install -y --enablerepo="epel" python-pip