-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't execute install_splash() #3
Comments
Almost the same, I tried to follow the blog post and reproduce the example, but when trying to run the install_splash, I have the following error Same OS as @fzenoni, Ubuntu 16.04, latest version of R and RStudio |
Cool. Thx for posting. I tested on a 16.04.1 system about an hour ago and it worked w/o a hitch. Can you provide a bit more detail on your respective setups? I can try to replicate in a Vagrant VM to see what I need to do to accommodate. In reality, it's a bit of code in The code in question in |
Thanks for you answer. I run on a virtual machine (VirtualBox) with Ubuntu 16.04.2 LTS 64 bit. Are you looking for other specific information? |
So i tried to figure out what's going on, by using the terminal.
If I run the previous command as sudo, then it seems to be working (Which is pretty much the command line you specify in the overall description to start the docker) So I'm a bit lost, I'm quite a newbie with dockers, but if we always have to execute them as sudo, that might be an issue to do that from R. :/ |
All right, I'm a noob. You can throw stuff at me, I deserved it. I didn't add myself as part of the docker group, since I was running everything using sudo. https://docs.docker.com/engine/installation/linux/linux-postinstall/ @fzenoni try the following in terminal sudo groupadd docker
sudo usermod -aG docker $USER Then log out and log back in, and give it another try. On another note, for me, splash is located at '0.0.0.0' instead of 'splash', using the default start_splash function. (so to access splash, you need to use splash('0.0.0.0', 8050L) %>% stuff |
@The-Dub It worked! Thanks a lot! I must share your mea culpa -- I haven't read enough documentation. |
@hrbrmstr maybe add something about this on the harbor page description |
wow. #ty for poking at this! I will add that to the front-matter but will leave this open until i do. |
in README now. #ty again! |
Hi,
Following the instructions reported on this blog post, I got stuck when executing install_splash().
The provided error is the following one:
Error in sys::exec_internal(docker, args = args, error = TRUE) : Executing '/usr/bin/docker' failed with status 1
despite the fact that I can definitely execute docker by typing
/usr/bin/docker
or even onlydocker
in the terminal. My OS is Ubuntu 16.04.2 LTS.The text was updated successfully, but these errors were encountered: