通过按键,我发出了命令:
sudo rm /usr/bin/python*
于是问题开始了。Python仍然可以启动,但是当我现在想对dpkg做任何事情时,我会收到此错误消息(因为很长,所以不包括整个错误消息):
AttributeError: 'module' object has no attribute 'pydebug'
dpkg: error while cleaning up:
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
/var/cache/apt/archives/python-papyon_0.5.5-1ubuntu3.1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
因此基本上,papyon / pydebug或dpkg似乎引起了问题。我已经尝试过类似的东西
sudo apt-get -f install
sudo apt-get --fix-missing install
以下在另一个论坛中提到的相同问题:在Ubuntu上:我删除了/usr/bin/python2.7-请帮助
但无济于事。看来无论我对dpkg做什么,都会收到相同的错误。我天真地试图做到这一点:
sudo cp /usr/lib/python2.7 /usr/bin/python2.7
sudo ln -s /usr/bin/python2.7 /usr/bin/python
但这没有用。
在这里的任何帮助将不胜枚举。