centos7编译安装python3.8提示Could not import runpy module

经过搜索,在编译安装python3.8时报这个错是和gcc的版本有关,centos7默认的gcc版本时gcc4.8.5,升级到gcc8.5后问题得到解决。

在升级过程中将步骤做成了一键升级脚本,并且将相关软件包都替换成了中国的源,保证下载速度。

一键升级脚本:

#!/bin/bash

# Add the CentOS 7 EPEL repository
yum -y install epel-release

# Install the necessary packages for compiling gcc 8
yum -y install bzip2 gcc gcc-c++ make wget

# Download the gcc source code and prerequisites
cd /usr/local/src
wget https://mirrors.tuna.tsinghua.edu.cn/gnu/gcc/gcc-8.5.0/gcc-8.5.0.tar.xz
wget https://mirrors.tuna.tsinghua.edu.cn/gnu/gmp/gmp-6.2.1.tar.xz
wget https://mirrors.tuna.tsinghua.edu.cn/gnu/mpfr/mpfr-4.1.0.tar.xz
wget https://mirrors.tuna.tsinghua.edu.cn/gnu/mpc/mpc-1.2.1.tar.gz

# Extract the downloaded files
tar -xvf gcc-8.5.0.tar.xz
tar -xvf gmp-6.2.1.tar.xz
tar -xvf mpfr-4.1.0.tar.xz
tar -xvf mpc-1.2.1.tar.gz

# Rename the extracted folders to match the expected directory names
mv gmp-6.2.1 gcc-8.5.0/gmp
mv mpfr-4.1.0 gcc-8.5.0/mpfr
mv mpc-1.2.1 gcc-8.5.0/mpc

# Configure, compile and install gcc 8
cd gcc-8.5.0
./configure --disable-multilib
make -j$(nproc)
make install

# Update the default gcc and g++ to point to gcc 8
mv /usr/bin/gcc /usr/bin/gcc.old
mv /usr/bin/g++ /usr/bin/g++.old
mv /usr/bin/cc /usr/bin/cc.old
mv /usr/bin/c++ /usr/bin/c++.old
ln -s /usr/local/bin/gcc /usr/bin/gcc
ln -s /usr/local/bin/g++ /usr/bin/g++
ln -s /usr/local/bin/cc /usr/bin/cc
ln -s /usr/local/bin/c++ /usr/bin/c++

你可能感兴趣的:(linux,随录,ubuntu,linux,运维,gcc,python)