在安装了epel源的情况下,直接yum就可以安装python3.4 yum install python34 -ypython3 --version 没有自带pip3,从官网安装 wget --no-
在安装了epel源的情况下,直接yum就可以安装python3.4
yum install python34 -ypython3 --version
没有自带pip3,从官网安装
wget --no-check-certificate https://bootstrap.pypa.io/get-pip.pypython3 get-pip.pypip3 -V
写个简单的代码
#!/usr/bin/python3# -*- coding: UTF-8 -*-import sysprint(sys.version)
over