Error in install.packages : type =="both" cannot be used with 'repos =NULL'
Asked Answered
T

1

14

Actually I am trying to install packages offline. I have R studio. what I do is based on previously asked question as follows:

install.packages(C:/Users/Desktop/class_7.3-12.zip", repos = NULL)

I get the error I mentioned in the title. is someone out there to give me an advice ?

Thanks

Tanbark answered 8/5, 2015 at 12:22 Comment(4)
Add , type="binary" to your command.Clance
Btw, you noticed the missing ", right..?Buatti
Sure but that is just a typo. The error comes from the changes default of `type="both" in R 3.2.0.Clance
I cannot load it. If I type library(shinyapps-master), it says Error in library("shinyapps-master") : there is no package called ‘shinyapps-master’Lifegiving
G
10

You can install packages from source or binaries. In the "Package Archives" section of the documentation you may read:

Package Source class_7.3-12.tar.gz

Windows Binary class_7.3-12.zip

(32- & 64-bit) Mac OS X 10.9 (Mavericks) class_7.3-12.tgz

When installing from binary (as it seems to be your case):

install.packages("class_7.3-12.zip", repos = NULL, type="binary")

Otherwise, when installing from source:

install.packages("class_7.3-12.tar.gz", repos = NULL, type="source")
Gadolinium answered 8/8, 2016 at 11:46 Comment(1)
Try to install "devtools", it solved me the same problem: install.packages("devtools")Rooker

© 2022 - 2024 — McMap. All rights reserved.