metroluffy / blog

用于记录平时开发中所遇到问题的解决方法、笔记等
9 stars 1 forks source link

CentOS安装Python3.6 #9

Open metroluffy opened 6 years ago

metroluffy commented 6 years ago

CentOS7系统自带的Python版本是Python2.7,如需使用Python3.6,需要自行安装Python3.6。

CentOS7安装Python3.6有两种方式:

这里使用CentOS7 Yum源安装Python3.6。

1)安装IUS软件源

#安装EPEL依赖
sudo yum install epel-release

#安装IUS软件源
sudo yum install https://centos7.iuscommunity.org/ius-release.rpm

2)安装Python3.6

sudo yum install python36u

安装Python3完成后的shell命令为python3.6,为了使用方便,可以设置alias

3)安装pip3

#安装完成python36u并没有安装pip,安装pip

sudo yum install python36u-pip

安装pip完成后的shell命令为pip3.6,为了使用方便,同样可以设置alias

metroluffy commented 6 years ago

在使用过程中遇到诸如 fatal error: Python.h: No such file or directory这样的你可能会需要安装对应的python-devel,那么以上对应的便是yum install python36u-devel