我是以太坊的新手,所以这可能是一个愚蠢的问题。

现在,我正在尝试根据此tutorial安装蛇和pyethereum。一切正常,但是当我启动Python代码时:

import serpent
import pyethereum


发生错误:No module named pyethereum

我该如何解决?

最佳答案

模块的名称是ethereum,而不是pyethereum。使用以下内容:

import serpent
import ethereum


应该工作正常。

10-08 02:05