centos7 yum 安装 python3.6
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 yum 安装 python3.6相关的知识,希望对你有一定的参考价值。
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum install python36 python36-devel -y
curl https://bootstrap.pypa.io/get-pip.py|python3.6
mkdir ~/.pip
cat > ~/.pip/pip.conf <<EOF
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
EOF
pip3.6 install xxxxxx
用3.6的pip安装模块python3.6 xxxx.py
用python3.6执行脚本
以上是关于centos7 yum 安装 python3.6的主要内容,如果未能解决你的问题,请参考以下文章