我加载mxnet时遇到了同样的问题。你手动安装DiagrammeR的建议似乎已经解决了。不幸的是,它只是暴露了另一个错
Error: package or namespace load failed for 鈥榤xnet鈥�: .onLoad failed in loadNamespace() for 'mxnet', details: call: inDL(x, as.logical(local), as.logical(now), ...) error: unable to load shared object 'C:/Users/steve/Documents/R/win-library/3.4/mxnet/libs/x64/libmxnet.dll': LoadLibrary failure: The specified module could not be found.
我认为必须缺少“onLoad”功能。上面引用的DLL,libmxnet.dll,应该是它应该的位置。
在Windows上安装mxnet有一些奇怪的事情。几天前我也遇到过这个问题。帮助我的是手动安装diagrammeR 0.9:
# Make sure you have devtools installed already require(devtools) install_version("DiagrammeR", version = "0.9.0", repos = "http://cran.us.r-project.org") require(DiagrammeR)
在这之后,尝试安装mxnet - 现在它应该工作。 如果有帮助,请告诉我。