您的位置:首页 > 其它

“except (IOError, OSError), e: SyntaxError: invalid syntax”

2016-12-13 09:33 1981 查看
之前手动将Ubuntu16.04默认的Python2.7 改成了Python3 ,结果卸载软件的时候出错,



解决方案:在http://askubuntu.com/questions/240256/python-problem-report-python-apport-apport-break-apt-get 中找到的,可以用了

I had the same problem. A cleaner solution is to use:

在终端输入以下命令:

sudo update-alternatives –config python

There are 3 choices for the alternative python (providing /usr/bin/python).

Selection Path Priority Status

0 /usr/bin/python3 30 auto mode

1 /usr/bin/python2.6 20 manual mode

2 /usr/bin/python2.7 10 manual mode

3 /usr/bin/python3 30 manual mode

Press enter to keep the current choice[*], or type selection number: 2

也就是重新将Python设置成2.7版本的,

然后再次使用如下命令:

sudo apt-get remove –purge bleachbit

可以彻底删除bleachbit 了;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐