I'm trying to use renv with docker using the rocker/verse:3.6.3 image. I get an error "permission denied" on package install upon moving files from staging to library directory. I tried to disable staged installation using both options(renv.config.install.staged = FALSE) and options(renv.config.install.transactional = FALSE), also tried via environment variables--Sys.setenv(RENV_CONFIG_INSTALL_STAGED = FALSE), Sys.setenv(RENV_CONFIG_INSTALL_TRANSACTIONAL = FALSE)--with no luck. Any idea on something I'm missing &/or potential workaround?
Can't install packages with renv on docker container (rocker/verse:3.6.3): permission denied on staged install
376 Views Asked by Joe Catin At
0
There are 0 best solutions below
Related Questions in DOCKER
- Docker, redirecting to virtualbox port
- Collect only from STDERR when using Docker syslog logging driver
- How can I create a docker image from the current system?
- Moving Docker Containers Around
- How can I test with serverspec that Jenkins is running in a jenkins docker container?
- How to deploy django 1.8 on Elastic Beanstalk using Docker
- Emulating `docker run` using the golang docker API
- Where are docker images and containers stored when we use it with Windows?
- docker compose, vagrant and insecure Repository
- Commit data in a mysql container
- oh-my-zsh installation returns non zero code
- Use custom docker binary in CoreOS
- Can I use docker image ubuntu 14.04 if my host is 12.04?
- Hide/obfuscate environmental parameters in docker
- How to add initial users when starting a RabbitMQ Docker container?
Related Questions in RSTUDIO
- R cannot open file with cfa()
- Missing projection file in R's rgdal package for geospatial analysis
- rJava load error in RStudio/R after "upgrading" to OSX Yosemite
- Plotting Modeled Data as my Regression Curve in R/RStudio
- RStudio - blank screen on Mac
- Prompt user without waiting
- The error when publishing a shiny app
- R. Why is the output data becoming ranks of the data instead of the original data?
- Is there any way to disable environment pane in RStudio?
- Can I change significant figures on the fly
- Web scraping the make/model/year of VIN numbers in RStudio
- Unable to install RStudio on Mac OSX 10.10
- Connecting R to mysql DB via SSH tunnel
- Can't install devtools in RStudio -- Dependencies not found (xml2/rversions)
- RODBC with MAC not working. Using unixODBC and Rstudio
Related Questions in RENV
- Collaborating in R: renv with different versions of R?
- What is RENV_PATHS_CACHE_HOST? -- docker documentation
- Automate configuration options for github install with renv
- Why does `renv` do not restore packages which are deprecated for a older R versions?
- Can't load libraries on any renv project. How to fix this?
- R error my sendMessage function is not working any ideas why?
- Renv cache not working. Packages are copied not linked
- How to solve installing of dependencies issue when using renv to share code with collaborators?
- r using renv to reproduce project, some library in renv.lock not in the folder /renv/library
- MacOS: Package compilation fails in renv project, but succeeds outside renv
- [tidy]: package 'tidy' is not available
- Multiple renv packages (Loaded and on-disk path mismatch)
- Issue with library(RcppParallel) with {renv} in R
- Getting Java error when running driver drake
- Why can't renv find certain package versions?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?