在mxnet上安装错误

时间:2017-01-04 16:45:27

标签: r mxnet

我正在尝试在我的Windows 10笔记本电脑上安装mxnet以与R Studio一起使用。

我使用了这些指令:

install.packages("drat", repos="https://cran.rstudio.com")
drat:::addRepo("dmlc")
install.packages("mxnet")

但是当我尝试这个时:

require(mxnet)

我收到错误消息:

Loading required package: mxnet
Error : object ‘combine_edges’ is not exported by 'namespace:DiagrammeR'

以下是完整的控制台:

> install.packages("drat", repos = "https://cran.rstudio.com")
Installing package into ‘C:/Users/bill_/Documents/R/win-library/3.3’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/drat_0.1.2.zip'
Content type 'application/zip' length 73095 bytes (71 KB)
downloaded 71 KB

package ‘drat’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in
    C:\Users\bill_\AppData\Local\Temp\RtmpIDZk6c\downloaded_packages
> drat:::addRepo("dmlc")
> install.packages("mxnet")
Installing package into ‘C:/Users/bill_/Documents/R/win-library/3.3’
(as ‘lib’ is unspecified)
trying URL 'https://dmlc.github.io/drat/bin/windows/contrib/3.3/mxnet_0.7.zip'
Content type 'application/zip' length 5196542 bytes (5.0 MB)
downloaded 5.0 MB

package ‘mxnet’ successfully unpacked and MD5 sums checked

The downloaded binary packages are in
    C:\Users\bill_\AppData\Local\Temp\RtmpIDZk6c\downloaded_packages
> require(mxnet)
Loading required package: mxnet
Error : object ‘combine_edges’ is not exported by 'namespace:DiagrammeR'
> 

有人可以帮忙吗?

提前致谢。

解决每个AXEMAN建议的解决方案......

# version 0.9.0 of DiagrammeR won't work with mxnet at this time (20170104)
require(devtools)
install_version("DiagrammeR", version = "0.8.1", repos = "http://cran.us.r-project.org")

1 个答案:

答案 0 :(得分:1)

使用最新的repo,您​​应该能够完成安装。他们删除了对" combine_edges"这是从最新的DiagrammeR中删除的。