我的系统:
操作系统: ubuntu 16.04
python版本: 2.7
我遵循这里的说明:https://github.com/ethereum/pyethapp/wiki/Getting-Started从Github安装pyethapp。但是,当我试图运行pyethapp时,它显示了以下错误消息:
“对不起,但此版本只支持100个命名组” AssertionError:对不起,但此版本只支持100个命名组
我知道这有一些事情要处理,特别是我的机器和regex,但我无法解决它。
发布于 2016-10-04 08:24:45
这是bug解析器中最近的一个bug:https://github.com/pyca/cryptography/issues/3187。有两种解决办法你可以尝试:
pip install pycparser==2.13
或者如果您不想降低the解析器的级别:
pip install cryptography --no-binary pycparser
https://ethereum.stackexchange.com/questions/8992
复制相似问题