pip3未安装在centos7中

pip3未安装在centos7中,pip,python-3.5,centos7,Pip,Python 3.5,Centos7,当我使用以下命令安装pip3 for python 3.5.1时: sudo yum-y安装python35u-pip 然后我得到了以下问题: Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos.usonyx.net * extras: centos.usonyx.net * updates: centos.usonyx.net No package python35

当我使用以下命令安装pip3 for python 3.5.1时:

sudo yum-y安装python35u-pip

然后我得到了以下问题:

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: centos.usonyx.net
 * extras: centos.usonyx.net
 * updates: centos.usonyx.net
No package python35u-pip available.
Error: Nothing to do

我已经安装了centos 7和python 3.5.1。我在谷歌上搜索了这么多,但当没有得到任何回复时,我就来这里寻求建议和帮助。

似乎您有键入错误,正确的命令应该是

sudo yum -y install python35-pip
请注意python35u-pip的区别

如果这会引发其他错误,请尝试执行以下步骤:

$ sudo yum install python35-setuptools
$ sudo easy_install-3.5 pip
它需要启用EPEL存储库


请让我知道。

如果我在任何地方出错,请纠正我。要yum-y安装python35 pip吗?没有“u”。在我看来,有一个打字错误。。。