每当我尝试更新 Linux Mint 18.1 时,更新管理器都会出现以下错误。
E: /var/cache/apt/archives/mintupdate_5.2.1.3_all.deb: subprocess new pre-removal script returned error exit status 1
如果我尝试从命令行更新,我会得到以下信息:
Preparing to unpack .../mintupdate_5.2.1.3_all.deb ...
File "/usr/bin/pyclean", line 63
except (IOError, OSError), e:
^
SyntaxError: invalid syntax
dpkg: warning: subprocess old pre-removal script returned error exit status 1
dpkg: trying script from the new package instead ...
File "/usr/bin/pyclean", line 63
except (IOError, OSError), e:
^
SyntaxError: invalid syntax
dpkg: error processing archive /var/cache/apt/archives/mintupdate_5.2.1.3_all.deb (--unpack):
subprocess new pre-removal script returned error exit status 1
Traceback (most recent call last):
File "/usr/bin/pycompile", line 35, in <module>
from debpython.version import SUPPORTED, debsorted, vrepr, \
File "/usr/share/python/debpython/version.py", line 24, in <module>
from ConfigParser import SafeConfigParser
ModuleNotFoundError: No module named 'ConfigParser'
dpkg: error while cleaning up:
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
/var/cache/apt/archives/mintupdate_5.2.1.3_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
我有点迷茫了。
编辑:好的...我找到了一些进一步的信息,但似乎我搞砸了皇家地。这是我在终端上询问版本时得到的结果:
$ python --version
Python 3.6.3
$ python3 --version
Python 3.5.2
$ python2 --version
Python 2.7.12
我已经很久没处理过这个问题了,我已经不记得我是怎么弄的了。我正在寻找如何恢复它。
答案1
因此,经过一番调查,我找到了解决办法。/usr/bin目录中,我找到了 python 指向的链接/etc/alternatives,这让我想到了命令update-alternatives
。
通过在终端上输入update-alternatives --display python
,我得到了指向可执行文件python
的指针python3.6
。
使用sudo update-alternatives --set python
并输入所显示的数字作为所需选项(在本例中为 python2.7)。
固定的。