Fail to load the "car" package

I am am trying to load the "car" package:

install.packages("car")

but I get the following error:

Warning in install.packages :
  package ‘car’ is not available (for R version 3.4.3)

Does anyone have any idea how to solve this problem without having to download a new R version?
I need this package to check for multicollinearity in my regression (VIF command)...

If you know of an older version compatible with R 3.4.3, you can install it with install_version()

require(devtools)
install_version("car", version = "0.x.x", repos = "http://cran.us.r-project.org")

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.