blank
blank
发布于 2019-08-19 / 449 阅读 / 0 评论 / 0 点赞

CentOS7 安装 python36

导入 epel 源

wget -O /etc/yum.repos.d/epel-aliyun.repo https://mirrors.aliyun.com/repo/epel-7.repo

生成缓存

yum clean all && yum makecache fast

执行安装

yum install -y python36 python36-devel python36-pip python36-setuptools && easy_install-3.6 pip

确认安装

pip3 -V
pip -V

评论