You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2018. It is now read-only.
I expected pip install pyethapp would get a working version. I followed the README and typed pyethapp into my terminal after the install. I expected to see a list of available commands, and be able to use the client.
Observed behaviour
pip install pyethapp gets version 1.5.0 by default, which doesn't work because of reasons relating to this issue: #257. For reference, the end of that traceback is: ImportError: cannot import name blocks. This confused me.
Fix
I had to go to github and look to see that this error was fixed, see what version it was fixed in, and then specify that version to pip install, i.e. pip install pyethapp==1.5.1a0. I believe (?) putting a new non-alpha version on PyPI would clear this roadblock in the future.
The text was updated successfully, but these errors were encountered:
Checklist
pyethapp
inside a virtualenvSystem/environment
Expected behaviour
I expected
pip install pyethapp
would get a working version. I followed the README and typedpyethapp
into my terminal after the install. I expected to see a list of available commands, and be able to use the client.Observed behaviour
pip install pyethapp
gets version 1.5.0 by default, which doesn't work because of reasons relating to this issue: #257. For reference, the end of that traceback is:ImportError: cannot import name blocks
. This confused me.Fix
I had to go to github and look to see that this error was fixed, see what version it was fixed in, and then specify that version to
pip install
, i.e.pip install pyethapp==1.5.1a0
. I believe (?) putting a new non-alpha version on PyPI would clear this roadblock in the future.The text was updated successfully, but these errors were encountered: