1

我在这里有点难过。我以前从未见过错误inspect.py,但在这里我尝试使用 certbot 安装一些 SSL 证书并发生错误。包括堆栈跟踪的 certbot 日志在这里,但错误是:

  File "/usr/lib64/python2.7/inspect.py", line 815, in getargspec
    raise TypeError('{!r} is not a Python function'.format(func)) 
TypeError: <method-wrapper '__ne__' of type object at 0x1eeab80> is not a Python function

并在运行时发生certbot certonly。其他命令,例如检索版本,都很好。

我尝试了一些事情(卸载/重新安装等)但无济于事。我试图避免从 git 或其他来源安装(试图坚持使用yum)。更多细节

  • Centos @ 7.1.1503(核心)
  • 证书机器人@ 0.8.1

奇怪的是,这个错误似乎表明实现中有错误,但我觉得这很奇怪,因为我在另一台 CentOS 7 机器上使用 certbot 没有问题。

任何帮助是极大的赞赏。如果合适的话,我会在 GitHub 上打开一个问题,但我想我会先在这里问。

4

1 回答 1

2

您需要使用以下命令更新密码学: pip2 install -U cryptography

也许 pyOpenSSL: pip2 install -U pyOpenSSL

您可以使用一个命令来检查所有要求: pip2 install -U certbot

于 2016-08-12T23:11:15.347 回答