I just updated my R version to 3.5.2
> sessionInfo()
R version 3.5.2 (2018-12-20)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: OS X El Capitan 10.11.6
Matrix products: default
BLAS: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libRblas.0.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libRlapack.dylib
locale:
[1] de_DE.UTF-8/de_DE.UTF-8/de_DE.UTF-8/C/de_DE.UTF-8/de_DE.UTF-8
attached base packages:
[1] utils datasets base
loaded via a namespace (and not attached):
[1] compiler_3.3.3 assertthat_0.2.0 tools_3.5.2
Afterwards I copied R packages manually from
"/Library/Frameworks/R.framework/Versions/3.3/Resources/library to "/Library/Frameworks/R.framework/Versions/3.5/Resources/library
I tried to update all packages with
update.packages(ask = FALSE)
unfortunately when I open R Studio now it is blank and it gives me following error message "package 'grDevices' was installed by an R version with different internals. it needs to be reinstalled with this R version"
when trying to install grDevices in the R console (as R Studio is blank) yields this:
> install.packages("grDevices", version='3.5.2')
--- Bitte einen CRAN Spiegel für diese Sitzung auswählen ---
Warnmeldungen:
1: Paket ‘grDevices’ ist nicht verfügbar (for R version 3.5.2)
2: package ‘grDevices’ is a base package, and should not be updated
How do I update grDevices or what can I do?