RedHat升级Python至3.x

简述

这节以RedHat为例,来讲解如何对自带的Python进行升级。

我们可以通过python -V来查看当前Python的版本号是2.6.6,比较老了,3.X和2.X有很多不同。

更新Python不要删除老版本,新老版本是可以共存的,很多基本的命令、
软件包都要依赖预装的老版本Python,比如:yum。

  • 简述
  • Python安装
    • 操作系统
    • 查看当前版本
    • 下载新版本
    • 解压缩
    • 安装配置
    • 编译
    • 安装
    • 检测

Python安装

操作系统

[root@redhat ~]# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.4 (Santiago)

查看当前版本

[root@redhat ~]# python -V
Python 2.6.6

下载新版本

我们可以进入Python下载页面查看,选择需要的版本:Python下载页面,这里我选择的是3.5.1下面的Python-3.5.1.tar.xz。

[root@redhat ~]# wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tar.xz

解压缩

[root@redhat ~]# tar xvf Python-3.5.1.tar.xz

安装配置

进入解压后的目录,执行安装配置。

[root@redhat ~]# cd Python-3.5.1
[root@redhat Python-3.5.1]# ./configure

执行./configure时如果报错,说明没有安装合适的编译器。

configure: error: no acceptable C compiler found in $PATH

这时,需要安装/升级gcc及其它依赖包。

[root@redhat Python-3.5.1]# yum install make gcc gcc-c++

编译

[root@redhat Python-3.5.1]# make

安装

[root@redhat Python-3.5.1]# make install

检测

安装成功以后,我们就可以查看Python及GCC的信息了。

[root@redhat Python-3.5.1]# python
Python 2.6.6 (r266:84292, Oct 12 2012, 14:36:13)
[GCC 4.4.6 20120305 (Red Hat 4.4.6-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
[root@redhat Python-3.5.1]# python3.5
Python 3.5.1 (default, Apr  6 2016, 23:11:24)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-3)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
时间: 2024-10-27 01:27:08

RedHat升级Python至3.x的相关文章

Linux 升级 Python 至 3.x

简述 CentOS 7 中默认安装了 Python,版本比较低(2.7.5),为了使用新版 3.x,需要对旧版本进行升级. 由于很多基本的命令.软件包都依赖旧版本,比如:yum.所以,在更新 Python 时,建议不要删除旧版本(新旧版本可以共存). 简述 查看 Python 版本号 下载新版本 解压缩 安装配置 编译 安装 验证 设置 3x 为默认版本 配置 yum 查看 Python 版本号 当 Linux 上安装 Python 后(默认安装),只需要输入简单的命令,就可以查看 Python

CentOS 5升级Python版本(2.4>2.7)

安装SALT时,需要这样作,公司有一批REDHAT5的,弄起来...   然后却是: Missing Dependency: python(abi) = 2.6 is needed by package  rpm -q --provides python | grep abi python(abi) = 2.4   过程很顺利,参考URL:   http://www.linuxidc.com/Linux/2012-02/55194.htm   日前在CentOS上搭建测试环境时候,遇到需要升级p

Centos6.6下升级Python

在CentOS 6.X 上面安装 Python 2.7.X CentOS 6.X 系列自带的python版本是 2.6 , 由于安装shadowsocke,所以需要进行版本升级.由于一些系统工具和服务是对 Python 有依赖的,所以升级 Python 版本需要注意. 升级步骤 更新系统和开发工具集 更新指令 yum -y update yum groupinstall -y 'development tools' 另外还需要安装 python 工具需要的额外软件包 SSL, bz2, zlib

linu-在CentOS中升级Python的库问题

问题描述 在CentOS中升级Python的库问题 我用的系统是Linux的CentOS版本,它自带了python环境,是2.6的,我安装的软件需要2.7的环境,下载了python的tar包.一路.configure,make,make install下来,python安装完了,并在/usr/bin里建立了软连接指向/usr/local/bin下的python2.7,我运行python,环境变成2.7的了.但是我发现执行以下的语句不能导入包IMAP4_SSL,from imaplib impor

Linux升级Python提示Tkinter模块找不到解决

一.安装tkinter 在Linux中python默认是不安装Tkinter模块, [root@li250-193 ~]# python Python 2.6.6 (r266:84292, Feb 22 2013, 00:00:18) [GCC 4.4.7 20120313 (Red Hat 4.4.7-3)] on linux2 Type "help", "copyright", "credits" or "license"

centos6.3升级python到2.7(删除旧版本)

centos6.3升级python到2.7 yum groupinstall "Development tools" -y yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel -y cd /tmp wget --no-check-certificate https://www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz tar xf P

CentOS6.5 升级 Python 2.7 版本

前言 CentOS 6.5中预安装了Python-2.6.6,其比较新的Python-2.7.9(CentOS 7预装版本)主要区别在于新版本的Python导入了更丰富的模块功能.对于初学者而言这一般不会有太大的影响,相对而言这些新模块在某些特定的编译环境下却是不可或缺的.例如:使用Devstack all-in-one模式进行安装Openstack开发调试平台,需要Python-2.7及以上的支持,这样可以省去很多缺失模块的麻烦.  - 软件准备  - Python 2.7.9  - ipyt

CentOS6升级python到2.7版本脚本

1.安装依赖包 # yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel wget xz -y 2.编译安装python2.7 # cd ~ # wget --no-check-certificate https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz # tar xvfJ Python-2.7.9.tar.xz # cd Pyth

Centos5.x下升级python到python2.7版本教程_python

首先到官网下载python2.7.3版本,编译安装 复制代码 代码如下: $wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz $tar zxvf Python-2.7.3.tgz $cd Python-2.7.3 $./configure $make && make install 然后备份原来的python,并把python2.7做软连接到新的位置 复制代码 代码如下: $mv /usr/bin/python /us