indy-dev icon indicating copy to clipboard operation
indy-dev copied to clipboard

README.md: failed at the `python3 getting_started.py` step

Open mwherman2000 opened this issue 7 years ago • 2 comments

I followed the steps for using the In-Browser setup (on a Windows 10 laptop with Chrome). I executed the following commands:

https://labs.play-with-docker.com

ADD NEW INSTANCE

git clone https://github.com/kdenhartog/indy-dev.git
cd indy-dev
sudo make build
sudo make start

cd python
python3 getting_started.py

All seemed to work fine except for the last python3 getting_started.py command. It appeared to fail. How can I work around this?

image

mwherman2000 avatar Dec 19 '18 17:12 mwherman2000

The issue relates to the user within the indy_dev docker-container not having permission to create and write to the .indy_client directory.

To work around the issue, you can manually create the .indy_client directory and open-up the permissions for the container:

cd indy-dev
mkdir .indy_client
chmod -R 777 .indy_client

This allowed me to successfully execute the getting_started.py script.

colfax4 avatar Jan 02 '19 17:01 colfax4

awesome! Thanks @colfax4 for finding the solution to this. I'm going to see if I can automate this through the script, so others won't encounter this problem.

kdenhartog avatar Jan 02 '19 19:01 kdenhartog