RHEL7 Install Python3 and pip3
【今日推荐】:为什么一到面试就懵逼!>>> 方式一:yum安装python3 and pip3 添加EPEL源 RHEL7官方源里并没有python3,所以要配置下第三方源,目前EPEL仓库里最高版本只有python3.4.3,想要体验python3.5只能源码安装了,请看方法二。 以使用阿里镜像源的EPEL为例: [root@localhost ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo [root@localhost ~]# yum -y update 安装python3 [root@localhost ~]# yum -y install python34 okay! 通过EPEL源安装确实省了很多时间,验证一下python3: [root@localhost ~]# python3 Python 3.4.3 (default, Jan 26 2016, 02:25:35) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> >>> import this The