Blog·Leo Li
/
ABOUT
Linux - CentOS7 安装python3
09 Apr 2018
CentOS
默认提供的
Python
是
2.x
,通过如下步骤安装
Python3
:
sudo yum install epel-release
sudo yum list python3* # 查看有哪些python3的版本
sudo yum install -y python36 # 这里以安装python3.6的版本为例