码迷,mamicode.com
首页 > 其他好文 > 详细

yum except KeyboardInterrupt, e: 错误

时间:2018-07-29 17:52:28      阅读:559      评论:0      收藏:0      [点我收藏+]

标签:import   nta   语句   ror   try   roo   exce   ali   error   

在上一篇升级python的时候的,使用yum时,出现以下错误

 

  1.  
    [root@localhost bin]# yum
  2.  
    File "/usr/bin/yum", line 30
  3.  
    except KeyboardInterrupt, e:
  4.  
    ^
  5.  
    SyntaxError: invalid syntax
  6.  
    [root@localhost bin]#


解决的办法是:

vim /usr/bin/yum

 

  1.  
    #!/usr/bin/python
  2.  
    import sys
  3.  
    try:
  4.  
    import yum


将上面的语句改为:

 

  1.  
    #!/usr/bin/python2.6
  2.  
    import sys
  3.  
    try:
  4.  
    import yum

后面执行yum 就可以使用了(以后是否出现其他问题不知道)

yum except KeyboardInterrupt, e: 错误

标签:import   nta   语句   ror   try   roo   exce   ali   error   

原文地址:https://www.cnblogs.com/weiyiyong/p/9385990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!