Skip to content
Snippets Groups Projects
Verified Commit 5b4e0404 authored by Olivier Benz's avatar Olivier Benz
Browse files

tidyverse: Install Rcpp from GitHub

- Rcpp 1.0.13 build error with R 4.4.2 (VECTOR_PTR_RO)
- https://github.com/RcppCore/Rcpp/issues/1341
parent bb1d25f1
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,11 @@ RUN apt-get update \ ...@@ -31,6 +31,11 @@ RUN apt-get update \
libxtst6 \ libxtst6 \
unixodbc-dev \ unixodbc-dev \
&& install2.r --error --skipinstalled -n $NCPUS BiocManager \ && install2.r --error --skipinstalled -n $NCPUS BiocManager \
## Rcpp 1.0.13 build error with R 4.4.2 (VECTOR_PTR_RO)
## https://github.com/RcppCore/Rcpp/issues/1341
&& install2.r --error --skipinstalled -n $NCPUS remotes \
&& Rscript -e "remotes::install_github('RcppCore/Rcpp', ref = '3ae789b', upgrade = 'never')" \
## Install tidyverse packages
&& install2.r --error --deps TRUE --skipinstalled -n $NCPUS \ && install2.r --error --deps TRUE --skipinstalled -n $NCPUS \
tidyverse \ tidyverse \
dplyr \ dplyr \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment