Error when installing package "vitae"

Context: Trying to install package "vitae" and have successfully installed dependency "tinytex"

Problem: Error when code below. Only have R version 4.1.2 and 4.1.0 installed (I think).

#install.packages("tinytex") # install dependency for "vitae" package as requires LaTeX to be installed
#tinytex::install_tinytex()

#install.packages("vitae")
library("vitae")

Error: package or namespace load failed for ‘vitae’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘rlang’ 0.4.11 is already loaded, but >= 1.0.0 is required

This is asking you to update the rlang package

install.packages("rlang")

Thanks! I ended up updating that package and then updating all of my packages due to running - that seemed to work.

This topic was automatically closed 21 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.