I want to use package semPlot
and I get the error message as follows.
library(semPlot) Error: package or namespace load failed for ‘semPlot’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): namespace ‘rlang’ 1.0.6 is already loaded, but >= 1.1.0 is required In addition: Warning message: package ‘semPlot’ was built under R version 4.2.3
However, the latest version of rlang
is 1.0.6 https://cran.r-project.org/src/contrib/Archive/rlang/
I have tried these codes: install.packages("rlang") library(semPlot) install.packages("semPlot", dependencies = TRUE)