An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120522/1879f969/attachment.pl>
utils:::menuInstallLocal()
2 messages · Emiliano Zapata, Duncan Murdoch
On 12-05-22 11:55 AM, Emiliano Zapata wrote:
Hello R, I'm trying to install a package (class) locally; in windows 7, 64 bits machine. The only massage I see on the R Console is: utils:::menuInstallLocal() nothing else. What does this means, shouldn't I got some source of massage on the Console.
When you click on the menu item, it runs that, which is supposed to open a dialog box to let you choose a file to install. If you already know the filename, you don't need to do it that way; you can use filename <- "somepackage_version.zip" install.packages(filename, type="win.binary", repos=NULL) to do the same thing. But it would be worth figuring out why the file dialog isn't working. Duncan Murdoch