Python devel安装失败问题解决方案
程序员文章站
2022-06-15 17:38:22
环境:linux-centos8,python3.6如果你遇到python-devel无法安装的问题,发现如下错误:[root@localhost mongodb-src-r4.2.7]# yum i...
环境:linux-centos8,python3.6
如果你遇到python-devel无法安装的问题,发现如下错误:
[root@localhost mongodb-src-r4.2.7]# yum install python-devel
last metadata expiration check: 0:05:23 ago on sun 07 jun 2020 12:53:56 am cst.
no match for argument: python-devel
error: unable to find a match: python-devel
解决方案之一是:
yum install python36-devel
即使用3.6版本去安装。
有了python36-devel,pip3安装就更顺畅了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。