Skip to content
Prev 269187 / 398502 Next

'install package(s) from local zip files': what is the syntax for that?

On 20.08.2011 20:07, Bogaso Christofer wrote:
Let me read ?install.packages for you:

The description of the first argument tells us:
"If repos = NULL, a character vector of file paths of ?.zip? files 
containing binary builds of packages."


Hence

install.packages("f:/__package_name", repos = NULL)

seems to be more appropriate here.

Uwe Ligges