美文网首页
centos7安装python3

centos7安装python3

作者: 逆风_罗鹏 | 来源:发表于2019-03-16 11:10 被阅读0次

安装python3有很多的方式,我用的是 IUS 社区源直接安装的python 3.6的包。

IUS 社区是 CentOS 社区批准的第三方 RPM 源,为企业级 Linux (RHEL 和 CentOS) 5、 6 和 7 版本提供最新上游版本的 PHP、 Python、 MySQL 等软件包。

sudo yum update

sudo yum install yum-utils

sudo yum install https://centos7.iuscommunity.org/ius-release.rpm

sudo yum install python36u

sudo yum install python36u-pip

centos7默认的python版本是python2,本来想将默认的改成python3的,但centos里很多的东西都依赖python2,改了之后yum将不能使用。所以就不折腾了(况且2020年python2会停止支持,大家都会换成python3的)。

所以,使用方式是:python3.6  xx.py,pip安装也是:pip3.6 install xx

相关文章

网友评论

      本文标题:centos7安装python3

      本文链接:https://www.haomeiwen.com/subject/xdvjmqtx.html