在加載meshes包的時候出現(xiàn)了下面的報錯:
library(meshes)
Error: package or namespace load failed for ‘meshes’:
? .onLoad failed in loadNamespace() for 'rlang', details:
? call: NULL
error: The rlang package is not properly installed.
The DLL version (0.4.11) does not correspond to the package version (1.0.1).
Please update rlang to the latest version.
Updating packages on Windows requires precautions:
? <https://github.com/jennybc/what-they-forgot/issues/62>
之后通過鏈接:https://github.com/r-lib/rlang/issues/873找到了解決辦法
解決辦法就是輸入:
install.packages("rlang", type = "binary")
library(meshes)
成功