我已经设法在我的 Debian 系统上做了一些事情 Python-Cryptography 不允许我安装或删除任何东西

I've managed to do something on my Debian system and Python-Cryptography won't let me install or remove anything

这是 apt update / apt upgrade / apt dist-upgrade 的结果

sudo apt dist-upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
  python-cryptography
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
24 not fully installed or removed.
Need to get 0 B/212 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Reading changelogs... Done
(Reading database ... 81174 files and directories currently installed.)
Preparing to unpack .../python-cryptography_1.7.1-3+deb9u2_amd64.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/python-cryptography_1.7.1-3+deb9u2_amd64.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
ImportError: 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/python-cryptography_1.7.1-3+deb9u2_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

我不太确定我在这里到底做了什么,但我无法忘记它。我似乎无法删除那个包,或者修复它,或者重新安装它,一切都因为那个或类似的错误而失败。谁能帮我摆脱这个该死的东西,我已经试了几天了。

谢谢!!!

我今天也 运行 加入了这个,python-cryptography 以类似的方式阻止了我。

我在 python-cryptography 包上手动 运行 pyclean。我是 root,所以你可能需要在命令前添加 sudo

/usr/bin/pyclean python-cryptography

这让我遇到了一组不同的错误(很可能与您的问题无关。我的系统非常坏了),但 dpkg 很高兴再次开始工作。试一试

-汤姆

谢谢汤姆,虽然这不是我的问题,但它确实引导我走上了正确的道路。基本上,这整个问题都是因为我在某个时候将 Python 3.5 设置为默认值而造成的,显然 Debian 出于某种原因无法找到处理该问题的方法。我一回到2.7,一切都很好。