错误:
[root@MyServer face.dl520.net]# sudo yum install epel-release -y
File "/usr/bin/yum", line 30
except KeyboardInterrupt, e:
原因:
这是因为yum采用python作为命令解释器,原来系统自带的python解释器为python2.7,然后我之前为了方便将python默认的解释器设为了python3.6,导致按python3.6解析2.7的语法出错了。
解决方法:
修改/usr/bin/yum文件中的第一行为#!/usr/bin/python2.7
#!/usr/bin/python2.6
import sys
try:
import yum
except ImportError:
print >> sys.stderr, """\
可能你的系统不是2.7,通过tab键补全python命令就可以看到你有哪些python版本,选一个低版本的就好。
[root@MyServer face.dl520.net]# python
python python2.6 python3 python3.5-config python3.5m-config python-config
python2 python2.6-config python3.5 python3.5m python3-config
修改之后就可以正常使用yum了。
[root@MyServer bin]# sudo yum install epel-release -y
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
epel/metalink | 3.0 kB 00:00
* base: hk.mirrors.thegigabit.com
* epel: mirror.telkomuniversity.ac.id
* extras: hk.mirrors.thegigabit.com
* updates: hk.mirrors.thegigabit.com
阅读(6644) | 评论(0) | 转发(0) |