我是以太坊的新手,所以这可能是个愚蠢的问题。
现在我正试着根据这个tutorial来安装蛇形和pyethereum。一切运行正常,但是当我启动Python的代码时:
import serpent
import pyethereum有一个错误:No module named pyethereum
我该怎么解决它呢?
发布于 2016-09-18 08:34:55
模块的名称是ethereum,而不是pyethereum。使用以下内容:
import serpent
import ethereum应该可以很好地工作。
发布于 2016-09-18 06:48:14
按照Pytherium's Readme提供的安装说明进行操作,其内容为:
git clone https://github.com/ethereum/pyethereum/
cd pyethereum
python setup.py install在教程的说明中,使用了develop分支,根据持续集成徽章,该分支似乎失败了。
https://stackoverflow.com/questions/39552333
复制相似问题