Error in loadNamespace when trying to load xlsx file

Hello,

I am a relatively new user in R and I am trying to load an xlsx file, my code is below:

Install

install.packages("readxl")
library("readxl")

read_xlsx("Path\filename")

I am getting the following error:

Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
namespace ‘rlang’ 0.4.8 is already loaded, but >= 0.4.10 is required

What does the last line mean? Thank you for your help!

This is asking you to update the rlang package

install.packages("rlang")

Thank you! Worked once I installed that revised package. Much appreciated!

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

If you have a query related to it or one of the replies, start a new topic and refer back with a link.