no module named crypto.cipher

前端 未结 9 595
囚心锁ツ
囚心锁ツ 2021-02-07 06:59

I\'m trying my hands on encryption for a while now. I recently got hands on this python based crypter named PythonCrypter.

I\'m fairly new to Python and when I try to o

9条回答
  •  臣服心动
    2021-02-07 07:25

    I just encountered this issue with Python 2.7 on Windows. My solution was to rename the folder from ..\site-packages\crypto to ..\site-packages\Crypto. The lower case "c" was causing the import error.

    See https://github.com/pypa/pip/issues/3309 for details.

提交回复
热议问题