no module named crypto.cipher

前端 未结 9 598
囚心锁ツ
囚心锁ツ 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:33
    pip uninstall Crypto
    pip uninstall pycrypto
    pip install pycrypto
    

    That works for me.

    The point is, when you install pycrypto, you should remove Crypto first

    0 讨论(0)
  • 2021-02-07 07:33

    In order to use the pycypto library you should install it with:

    pip install pycrypto
    

    or

    easy_install pycrypto
    
    0 讨论(0)
  • 2021-02-07 07:37

    In ubuntu 18.04.2 LTS installing pycryptodome package resolved the issue

    0 讨论(0)
提交回复
热议问题