You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue: Installing RcppParallel in r-base=3.6.1 fails due to hard-coded path in R. No r-cppparallel package is available yet for R 3.6.1
* installing *source* package ‘RcppParallel’ ...
** package ‘RcppParallel’ successfully unpacked and MD5 sums checked
** using staged installation
/cluster/gjb_lab/jabbott/miniconda3/envs/dada2-1.12/lib/R/bin/R: line 211: /home/conda/feedstock_root/build_artifacts/r-base_1562703117796/_build_env/bin/sed: No such file or directory
/cluster/gjb_lab/jabbott/miniconda3/envs/dada2-1.12/lib/R/bin/R: line 211: /home/conda/feedstock_root/build_artifacts/r-base_1562703117796/_build_env/bin/sed: No such file or directory
Fatal error: cannot open file '': No such file or directory
ERROR: configuration failed for package ‘RcppParallel’
* removing ‘/cluster/gjb_lab/jabbott/miniconda3/envs/dada2-1.12/lib/R/library/RcppParall
Modifying R to point to a real sed version resolves the issue:
sed -i 's|^SED=.*|SED=/bin/sed|' $(which R)
sed -i 's|^SED=.*|SED=/bin/sed|' $(dirname $(which R))/../lib/R/bin/R
(dada2-1.12) ningal:~ $ R
R version 3.6.1 (2019-07-05) -- "Action of the Toes"
Copyright (C) 2019 The R Foundation for Statistical Computing
Platform: x86_64-conda_cos6-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
> install.packages('RcppParallel')
......[snip].....
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded from temporary location
** checking absolute paths in shared objects and dynamic libraries
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (RcppParallel)
Issue: Installing RcppParallel in r-base=3.6.1 fails due to hard-coded path in R. No r-cppparallel package is available yet for R 3.6.1
Modifying R to point to a real sed version resolves the issue:
Environment (
conda list
):Details about
conda
and system (conda info
):The text was updated successfully, but these errors were encountered: