之前手动将Ubuntu16.04默认的Python2.7 改成了Python3 ,结果卸载软件的时候出错:
解决方案:
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了。