今天在使用fabric模块时,报出一个错误:
from Crypto.Util.number import ceil_shift, exact_log2, exact_div File "/usr/lib/python2.6/site-packages/Crypto/Util/number.py", line 56, in <module> if _fastmath is not None and not _fastmath.HAVE_DECL_MPZ_POWM_SEC: AttributeError: 'module' object has no attribute 'HAVE_DECL_MPZ_POWM_SEC'
以为是pycrypto模块版本低导致,后来用pip升级后还是不行,试着手动导入还是不行,最后打开错误信息中的文件,把相关行注释掉,然后运行,就好了,但是不知道为什么?