Hello everyone. I had to reinstall ubuntu on my bo...
# getting-started
c
Hello everyone. I had to reinstall ubuntu on my box and now I am working on installation of the datahub. I have ubuntu 20.04, docker version 20.10.7, docker-compose 1.29.2 and installed everything required before the step "docker quickstart". When I try to do python3 -m datahub docker quickstart I get this:
m
Hi @crooked-toddler-8683 I usually run everything from inside a venv
e.g.
python3 -m venv venv
followed by
source venv/bin/activate
followed by
pip install acryl-datahub
followed by
datahub docker quickstart
can you try that?
c
@mammoth-bear-12532 same issue:
Turned out it was related to the permission issue that a lot of ubuntu users experience. Resolved it by running "sudo chmod 666 /var/run/docker.sock"
@mammoth-bear-12532 thank you though
m
ah thanks for letting us know @crooked-toddler-8683... where do you think we should fix the docs (or maybe even the cli) ?
🙌 1
c
@mammoth-bear-12532, I would say it's certainly related to the Ubuntu version (20.04) in my case and its compatibility with the latest docker (version of which as well as of docker-compose is mentioned above) and how it all related to the ubuntu user permissions. This fix also allowed me to use docker command without sudo.
h
@crooked-toddler-8683 Do you have add your user to the docker group? https://docs.docker.com/engine/install/linux-postinstall/