升级完python2.7.11后问题

安装完python2.7.11后用了几天挺好,但是今天用yum的时候发现了问题

[[email protected] yum.repos.d]# yum list
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

No module named yum

Please install a package which provides this module, or
verify that the module is installed correctly.

It‘s possible that the above module doesn‘t match the
current version of Python, which is:
2.7.11 (default, Apr  7 2016, 21:10:55)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)]

If you cannot solve this problem yourself, please go to
the yum faq at:
  http://yum.baseurl.org/wiki/Faq

上网查了一下才知道原来yum是需要python环境的,python2.7.11太新了,需要改回旧的版本

which yum

whereis python
vim /usr/bin/yum

将#!/usr/bin/python 改为#!/usr/bin/python2.6

时间: 2024-10-05 19:39:13

升级完python2.7.11后问题的相关文章

笔记:centos6.5自带python2.6一键升级到2.7.11

系统环境:CentOS6.5 final 自带python版本:2.6.6 升级目标:版本python-2.7.11,同时安装好setuptools,pip以及模块操作的tab补全功能 需要用到的软件已经统一打包好,免费下载入口:http://down.51cto.com/data/2223431 执行脚本才是重点,51cto下载入口:1key_update_python_2.7.11.sh 升级完成后效果 [[email protected] ~]# python --version Pyth

iOS 用CocoaPods做iOS程序的依赖管理(基于Alcatraz),以及升级Mac 10.11后Xcode的CocoaPods插件报错

创建Podfile文件 1.点击红框, Creat Podfile 2.接着弹出Podfile文件 3.Edit Profile, 下面以添加融云SDK为例: 融云SDK Podfile文件添加如下内容: Podfile Edited 1 也可以这样编辑: 屏幕快照 2015-10-27 上午9.04.47.png "7.0"表示引入的第三方库所支持的最低版本 target "CocoaPodsDemo"是你的目标应用项目 do ... end 是你的作用域 Ins

CentOs6.7 python2.6升级到2.7.11

1.查看当前python的版本 #python -V Python 2.6.6 2.下载Python-2.7.11 wget https://www.python.org/ftp/python/2.7.11/Python-2.7.11.tgz 3.解压并进入目录 tar zxvf Python-2.7.11.tgz cd Python-2.7.11 4.编译安装 ./configure make all make install make clean make disclean 5.查看安装后版

升级10.11后使用CocoaPod出现-bash: pod: command not found 解决办法-备

升级10.11后,运行pod命令出现: -bash: pod: command not found 解决办法: sudo gem install -n /usr/local/bin cocoapods 之后pod命令可以使用了. 如果pod update / pod install 卡在: Updating local specs repositories 等待即可,或者 可以使用 “pod install --verbose --no-repo-update” 进行下载,原因可能x被墙. po

centos python2.6 升级到python2.7

Step0: 安装GCC编译器环境 & zlib & ssl 先确认下GCC编译器是否已经安装,否则后面安装Python的时候会出现下面的提示 yum -y install gcc 安装 zlib-devel 没有安装的话,会提示错误的zlib.h 使用 yum install zlib-devel 进行安装 使用 yum install openssl-devel -y 安装ssl Step1:下载python2.7 & 安装 系统默认安装的Python是2.6.6的,我们需要升

python2.7.11安装pygame包

环境 win7家庭版 python2.7.11 1.在python官网下载对应的pygame包,我这里下载的是pygame-1.9.2a0-hg_8d9e6a1f2635%2B.win-amd64-py2.7.msi,下载好直接点击安装就可以 2.安装python包的管理工具pip 下载地址:https://pypi.python.org/pypi/pip#downloads  下载好pip-9.0.1.tar解压到任意文件夹下进入终端 输入命令:  python setup.py instal

安装完Ubuntu 14.04后的几件事

周末折腾一下Ubuntu 14.04,稍作记录: 1. 切换源,我还是钟情163的(ps, 这里如果用的以前13.04时候163的源会有问题,记得配置最新的) ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 $ sudo cp /etc/apt/sources.list /etc/apt/sources.list.origin $ sudo gedit /etc/apt/sources.list deb http://mirrors.163.com/ubuntu/ t

技巧方法 - CentOS6将Python2.6.6升级到Python2.7.6

1.首先使用"python -V"命令查看python版本,我们测试主机显示的是2.6.6版,于是下面就着手将python2.6.6升级到Python2.7.6.python -V #查看python版本2.接下来先请完成系统升级及安装开发工具包及相关需要的组件.只需执行下面三个命令完成安装即可.yum -y updateyum groupinstall "Development tools" -yyum install zlib-devel bzip2-devel

centos默认python2.6升级到python2.7,并用pip方式安装python工具包。

centos安装默认python2.6升级为python2.7,并解决python工具包安装的各种问题. 思路指导:升级2.7不能用yum安装python工具包.建议用pip 1.更新指令 yum -y update yum groupinstall -y 'development tools' 2.另外还需要安装 python 工具需要的额外软件包 SSL, bz2, zlib yum install -y zlib-devel bzip2-devel openssl-devel xz-lib