CentOS 6.4升级Python导致yum无法使用怎么办

2025-05-10 11:30:07
推荐回答(1个)
回答(1):

  CentOS 6.4升级Python导致yum无法使用怎么办,解答如下

  •   1、查看当前系统python的版本

  •   1python -V

  •   2、下载2.7.3版本的Python

  •   3、解压和安装

  •   tar -jxvf Python-2.7.3.tar.bz2

  •   #进入解压后的目录

  •   cd Python-2.7.3

  •   #编译和安装

  •   。/configure

  •   make

  •   make install