I tried to update the core packages using the suggested commands in Bioconductor
> BiocManager::install()
But I get the following error
The downloaded source packages are in
‘/tmp/Rtmp6l1eeP/downloaded_packages’
installation path not writeable, unable to update packages: abind, acepack,
askpass, assertthat, backports, base64enc, BH, bitops, broom, caTools,
cellranger, cli, clipr, colorspace, crayon, crosstalk, curl, data.table,
DBI, estimability, fansi, forcats, foreach,.......... rpart, spatial, survival
I tried the way suggested by https://cran.r-project.org/web/packages/BiocManager/vignettes/BiocManager.html#managing-multiple-versions using the method
> BiocManager::valid()
but the answer was the same
I suppose that the problem is: installation path not writeable,
Hello
Thanks for the advice
I figured out the problem
I only had to update the packages using the terminal of the system instead of RStudio
The exact commands inside the terminal were:
$ sudo R $ BiocManager::install() $ a
Thanks