DEV Community

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

Posted on • Edited 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)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay