python3编译安装 自定义gcc_python 3.64安装,升级gcc(版本过低安装错误)

本文详细介绍了在Linux环境下编译安装Python3的步骤,包括安装依赖、下载Python源码、解决gcc版本过低问题并进行升级,以及最终成功安装Python3并设置为系统默认版本的过程。
摘要由CSDN通过智能技术生成

1. 安装依赖环境

# yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel

2.下载Python3

wget ttp://mirrors.sohu.com/python/3.6.4/Python-3.6.4.tgz

3.安装python3

我个人习惯安装在/usr/local/python3(具体安装位置看个人喜好)

创建目录:mkdir -p /usr/local/python3

解压下载好的Python-3.x.x.tgz包(具体包名因你下载的Python具体版本不不同,如:我下载的是Python3.6.4.那我这里就是Python-3.6.4.tgz)

tar -zvxf Python-3.6.4.tgz

20180822161350003887.png

结果发现make失败

参考了文章发现gcc版本过低需要安装4.8.2以上

升级代码见下文,升级的是6.1版本

wget http://ftp.gnu.org/gnu/gcc/gcc-6.1.0/gcc-6.1.0.tar.gz

tar -zvxf gcc-6.1.0.tar.gz --directory=/usr/local/

cd /usr/local/gcc-6.1.0

./contrib/download_prerequisites

mkdir build

cd build

../configure -enable-checking=release -enable-languages=c,c++ -disable-multilib

make -j4 #编译时间有点长 一个多小时

make install

升级gcc过程报错处理

# 查看日志,搜索"error"

cat config.log|grep

# issue: configure: error: C++ compiler missing or inoperational

# 没有C++编译器

yum install gcc-c++

# issue: conftest.cpp:11:2: error: #error -static-libstdc++ not implemented

# 没有C,C++静态库

yum install glibc-static libstdc++-static -y

# 但报"No package libstdc++-static available",即没有-static-libstdc++源,问题仍存在。

# "checking whether g++ accepts -static-libstdc++ -static-libgcc"时报出的,可忽略

checking how to run the C++ preprocessor... /lib/cpp

configure: error: C++ preprocessor "/lib/cpp" fails sanity check

See `config.log‘ for more details.

/lib/cpp fails sanity check的解决

在某些软件的时候,运行./configure 会报错,错误提示为:

configure: error: C++ preprocessor “/lib/cpp” fails sanity

check See `config.log’ for more details

解决办法:出现该情况是由于c++编译器的相关package没有安装,以root用户登陆,在终端上执行:

# yum install glibc-headers

# yum install gcc-c++

4、进入解压后的目录,编译安装。

[root@Python /]# tar -xzvf /usr/local/src/Python-3.6.4.tgz -C /usr/local/src/

[root@Python /]# cd /usr/local/src/Python-3.6.4

[root@Python Python-3.6.4]# ./configure --prefix=/usr/local/python3

[root@Python Python-3.6.4]# make -j4

[root@Python Python-3.6.4]# make install

5、添加Python命令到环境变量:

[root@Python /]# vi ~/.bash_profile

PATH=$PATH:$HOME/bin

改为:

PATH=$PATH:$HOME/bin:/usr/local/python3/bin

[root@Python /]# source ~/.bash_profile

6、更改系统默认python版本为Python3.6

[root@Python /]# mv /usr/bin/python /usr/bin/python2.6

[root@Python /]# ln -s /usr/local/python3/bin/python3.6 /usr/bin/python

[root@Python /]# python -V

解决python升级后,YUM不能正常工作的问题:

#vi /usr/bin/yum

将文件头部的   #!/usr/bin/python

改成   #!/usr/bin/python2.6

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值