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