因为 CentOS 7上默认的版本是 Python 2.7, 所以我们可以通过添加 IUS 软件源使用 yum 方式安装 Python 3.6
安装 EPEL 和 IUS 软件源
yum install epel-release
yum install https://repo.ius.io/ius-release-el7.rpm
安装 Python 3.6 和 pip3
yum install python36u python36u-pip
创建符号链接
创建 python3
连接符
ln -s /bin/python3.6 /bin/python3
创建 pip3
连接符
ln -s /bin/pip3.6 /bin/pip3
安装常用的 Python 库
pip3 install requests
pip3 install pymysql
pip3 install xmltodict
pip3 install six
以上步骤完成后, Python 3.6 和 pip3 就安装成功了, 并可以直接使用 python3
和 pip3
命令来运行和安装 Python 包