简体   繁体   中英

Unable to install car package

I am unable to install the car package using version 3.4.4 in r. I keep getting error messages:

warning in install.packages : package 'car' not available (for R version 3.4.4)

I tried using the normal function install.packages('car') and also

install.packages('car', dependencies=TRUE, repos='http://cran.rstudio.com/')

but I'm still having the same error.

Try installing an old version of car that does not require R 3.5 :

library(devtools)
install_version("car", version = "3.0-2", repos = "http://cran.us.r-project.org")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM