在运行脚本时不理解此ImportError

时间:2019-07-12 21:08:27

标签: python import blockchain

我正在从github运行此代码:

一切正常,但在运行时进入第3步:

cd file-on-blockchain/example

在此,当我执行this => python deploy_contract_and_test.py时,它说

Traceback (most recent call last):
  File "deploy_contract_and_test.py", line 2, in <module>
    from web3 import Web3, HTTPProvider
ImportError: No module named web3

我已经看到许多人关于更新pip和所有内容的答案,但是没有任何效果。

2 个答案:

答案 0 :(得分:0)

好像您没有安装web3模块。您可以使用pip安装它:

$ pip install web3

答案 1 :(得分:0)

有关如何在官方github上安装软件包的更多详细信息:

https://github.com/ethereum/web3.py