Problems installing the devtools package

后端 未结 15 2150
耶瑟儿~
耶瑟儿~ 2020-11-29 15:32

I wish to use the devtools package. I\'ve run the following commands:

> install.packages(\"devtools\", dependencies = TRUE)
....
> library         


        
15条回答
  •  醉酒成梦
    2020-11-29 16:01

    I'm on windows and had the same issue.

    I used the below code :

    install.packages("devtools", type = "win.binary")
    

    Then library(devtools) worked for me.

提交回复
热议问题