DEV Community

Cover image for Warning message:
package ‘abc’ is not available (for R version 3.6.3)
Yuvarajan Johnpaul
Yuvarajan Johnpaul

Posted on • Updated on

Warning message: package ‘abc’ is not available (for R version 3.6.3)

R client unable to fetch the requested package.

Have you configured RProfile with the remote mirror from where your package needs to be fetched?

If yes, Is this the command you are using?

install.packages('package_name')

If that doesn't work, you may directly fetch the mirrors through the install command like below.

install.packages('package_name',repos='http://cran.us.r-project.org')

Top comments (0)