错误导入_counter形式pycrypto库(Error importing _counter f

2019-10-19 07:09发布

这条线在Crypto/Util/Counter.py从pycrypto lib目录下:

from Crypto.Util import _counter

导致此错误:

ImportError: cannot import name _counter

但我有一个文件_counter.soCrypto/Util在Python的site-packages的pycrypto库。 我使用Python 2.7.5,32位的Windows。

Answer 1:

_counter.so所属的Linux / MacOS的包文件时,Windows应该改为_counter.pyd。 预建的Windows PyCrypto包可以从这里下载: http://www.voidspace.org.uk/python/modules.shtml#pycrypto



文章来源: Error importing _counter form pycrypto library