kelsos / test-environment-scripts

A collection of scripts used to bootstrap a test raiden envirnoment. (gist is harder to update)
MIT License
1 stars 2 forks source link

README should mention requirements.txt #12

Closed pirapira closed 5 years ago

pirapira commented 5 years ago

I followed the README:

pip install -e .

but when I try ./start_private_chain.py, it complains about a missing package.

File "./start_private_chain.py", line 10, in <module>
    import click
ModuleNotFoundError: No module named 'click'

Probably the pip install command should be:

pip install -r requirements.txt -e .