Install R packages without the Internet

I installed the R version of R_2.14.1 in the window and you need to install some of the packages, but my system does not have an Internet connection. Any idea on how to install the R package without the Internet.

thanks

+6
source share
1 answer

You can do

install.packages(".../path/to/package.tar.gz", type="source", repos=NULL) 

What is described here here .

+18
source

Source: https://habr.com/ru/post/915364/


All Articles