没有名为“Crypto”的模块

问题描述 投票:0回答:3

当我运行此代码时,

from firebase import firebase
,我收到以下错误:

ModuleNotFoundError: No module named 'Crypto'

我尝试过以下方法:

pip install cryptop
pip3 install crypto
pip install pycryptodome
pip install pycryptodomex

终端结果显示:

Requirement already satisfied

当我尝试以下操作时:

pip install pycrypto
pip3 install pycrypto 
pip3 install --upgrade pycrypto

终端结果显示错误:

ERROR: Command errored out with exit status 1:

我正在使用 Visual Studio Code。

python python-3.x
3个回答
1
投票

你可以使用; pip 安装密码学,


0
投票

终端显示此错误“ModuleNotFoundError:没有名为“Crypto”的模块,因为您导入了加密货币,但是当您在代码中调用它时,它被用大写的“C”调用,而它应该是小写的。


0
投票

团队当您使用小写加密货币时,在包中它会引发错误,因为在包中它看起来像这样: 从 Crypto.Cipher 导入 blockalgo 从 Crypto.Cipher 导入 _AES

© www.soinside.com 2019 - 2024. All rights reserved.