Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install R Packages without internet [duplicate]

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

Thanks

like image 313
user395882 Avatar asked May 10 '12 06:05

user395882


1 Answers

You can do

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

Which is described also here.

like image 54
johannes Avatar answered Nov 11 '22 18:11

johannes