Centos7 yum安装Python3.6环境,超简单

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

配置好Python3.6和pip3

安装EPEL和IUS软件源

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

安装Python3.6

yum install python36u -y

创建python3连接符

ln -s /bin/python3.6 /bin/python3

安装pip3

yum install python36u-pip -y

创建pip3链接符

ln -s /bin/pip3.6 /bin/pip3

 

记得 yum install python36u-devel -y

否则安装pip3 install mysqlclient

会出现

_mysql.c:37:20: 致命错误:Python.h:没有那个文件或目录

#include "Python.h"

^

编译中断。

error: command 'gcc' failed with exit status 1

转载于:https://my.oschina.net/u/1446823/blog/1921190

你可能感兴趣的:(Centos7 yum安装Python3.6环境,超简单)