-
Notifications
You must be signed in to change notification settings - Fork 31
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
R/Rstudio version conflict #39
Comments
Another issue with the devel container that I just noticed. When developing R packages, I noticed that Reprex
Output:
I confirmed this works fine on my desktop installation of Rstudio. Session info
|
Related issue from September 2021 |
I'm able to reproduce the issue you are having with the R/RStudio version mismatch,
I will investigate this and get back to you. However, I'm unable to reproduce the I'm able to successfully read |
Even the issue of R/RStudio version mismatch comes from I launched the
|
@nturaga thanks so much for the quick response! 1. R/Rstudio mismatchI see, the root of the issue being caused by 2.
|
Hi, The workaround is to install the RStudio daily build on FROM rocker/r-ver:devel
ENV S6_VERSION=v2.1.0.2
ENV RSTUDIO_VERSION=daily
ENV DEFAULT_USER=rstudio
ENV PATH=/usr/lib/rstudio-server/bin:$PATH
RUN /rocker_scripts/install_rstudio.sh && /rocker_scripts/install_pandoc.sh
EXPOSE 8787
CMD ["/init"] Since the installation of RStudio Server takes only a few minutes, rewriting the Dockerfile of this repository like that should have little impact on the build time. |
It seems that the latest stable version of RStudio with new graphics support has been released. So the next build may resolve this issue. |
There's now a version conflict between R and Rstudio in the
devel
version of the container , which was last pushed 4 days ago.This results in plots being unable to print, as indicated by the following warning message, which is produced in a variety of situations but in my case occurred when I tried installing a remote repo (
remotes::install_github("neurogenomics/MAGMA_Celltyping@bschilder_dev")
):Example Dockerfile:
https://github.com/NathanSkene/EWCE/blob/master/Dockerfile
The text was updated successfully, but these errors were encountered: