我是以太坊的新人,所以这可能是一个愚蠢的问题。
现在我正在尝试根据此tutorial安装serpent和pyethereum。一切都运作良好,但是当我启动Python的代码时:
import serpent
import pyethereum
出现错误:No module named pyethereum
我该如何解决?
答案 0 :(得分:4)
模块的名称是ethereum
,而不是pyethereum
。使用以下内容:
import serpent
import ethereum
应该可以正常工作。
答案 1 :(得分:1)
按照Pytherium's Readme的安装说明进行操作,内容如下:
git clone https://github.com/ethereum/pyethereum/
cd pyethereum
python setup.py install
在教程的说明中,使用了develop
分支,根据持续集成徽章,它似乎失败了。