Closed pirapira closed 5 years ago
I followed the README:
pip install -e .
but when I try ./start_private_chain.py, it complains about a missing package.
./start_private_chain.py
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
pip install -r requirements.txt -e .
I followed the README:
but when I try
./start_private_chain.py
, it complains about a missing package.Probably the
pip install
command should be: