languageserver
languageserver copied to clipboard
CRAN mirror
Hi,
How do I set the CRAN mirror when installing with install.packages("languageserver")
I get the warning:
---- Please select a CRAN mirror for use in this session ----
Is there a way to select the CRAN mirror for the package?
You could either add repos
in
install.packages('package', repos='https://cloud.r-project.org/')
or set CRAN mirror permanently in your ~/.Rprofile
:
options(repos = c(CRAN = "https://cloud.r-project.org/"))