If you're using R code in a launcher, workspace or app and are seeing an error that says the following:
Failed to create a bus connection: No such file or directory
it is likely caused by an issue with the timedatectl
package.
To fix, please add the following snippet to your environment's Dockerfile:
# Fix systemd conflict with timedatectl
USER root
RUN echo "TZ=$( cat /etc/timezone )" >> /etc/R/Renviron.site
USER ubuntu
Comments
0 comments
Please sign in to leave a comment.