web-dev-qa-db-ja.com

RでのMXNetパッケージのインストール

RにMXNetパッケージをインストールしようとすると、多くの問題が発生します。Rの3.4.0バージョンを使用しており、Windows 10 CPU Intel i3、64ビットx64ベースのプロセッサを使用しています。

プロンプトが表示されます:

install.packages("mxnet")
Warning in install.packages :
  cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/src/contrib/PACKAGES.rds': HTTP status was '404 Not Found'
Installing package into ‘C:/Users/los40/OneDrive/Documentos/R/win-library/3.4’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘mxnet’ is not available (for R version 3.4.0)
Warning in install.packages :
  cannot open URL 'http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/3.4/PACKAGES.rds': HTTP status was '404 Not Found'

ここで提供されている.rarファイルをダウンロードしてみました。 1つを解凍し、「Rパッケージ」と表示されているフォルダーを取得して、次を使用してインストールしようとします。

> install.packages('R.package.rar', lib='D:/mxnet',repos = NULL)
Error in install.packages : type == "both" cannot be used with 'repos = NULL'
> install.packages('R.package.rar', lib='D:/mxnet')
Warning in install.packages :
  package ‘R.package.rar’ is not available (for R version 3.4.0)

http://mxnet.io/get_started/windows_setup.html にあるガイドは、プレビルドパッケージをWindowsにインストールする手順で必要なファイルが見つからないため意味がありませんsetupenv.cmd

7
Gotey

mxnetパッケージの場合、CPUに対してのみこのコマンドを使用してRにインストールします

cran <- getOption("repos")
cran["dmlc"] <- "https://s3-us-west-2.amazonaws.com/Apache-mxnet/R/CRAN/"
options(repos = cran)
install.packages("mxnet",dependencies = T)
library(mxnet)
17
user3588191

Windowsの場合、「mxnet」をインストールする場合。以下のコマンドを使用してください。

cran <- getOption("repos")
cran["dmlc"] <- "https://s3-us-west-2.amazonaws.com/Apache-mxnet/R/CRAN/"
options(repos = cran)
install.packages("mxnet",dependencies = T)
library(mxnet)
0
sumeet kumar

次の行を試してください。

cran <- getOption("repos")
cran["dmlc"] <- "https://s3.amazonaws.com/mxnet-r/"
options(repos = cran)
install.packages("mxnet")
0
Qiang Kou