MXNet package installation in R

13,044

For mxnet package install in R using this command for only CPU

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)
Share:
13,044
Gotey
Author by

Gotey

I work with Ruby on Rails and React.

Updated on July 08, 2022

Comments

  • Gotey
    Gotey almost 2 years

    I get plenty of trouble when trying to install MXNet package in R I am using the 3.4.0 version of R and I am on windows 10 CPU intel i3, 64bits x64-based processor.

    I get prompted:

    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'
    

    I've tried downloading the .rar files provided here. I decompress one and get the folder where it says "R package" attempting to install it by using:

    > 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)
    

    The guide found in http://mxnet.io/get_started/windows_setup.html makes no sense to me since I cannot find the file required in the steps for installing the prebuild package on windows called setupenv.cmd

  • Gotey
    Gotey almost 7 years
    I get this: > install.packages("mxnet", repos="dmlc.ml/drat/") Warning in install.packages : cannot open URL '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 : InternetOpenUrl failed: 'The host name in the certificate is invalid or does not match' Warning in install.packages : InternetOpenUrl failed: 'The host name in the certificate is invalid or does not match...
  • Pirate X
    Pirate X over 4 years
    Getting cannot open URL 'https://s3-us-west-2.amazonaws.com/apache-mxnet/R/CRAN/src/‌​contrib/mxnet_1.3.0.‌​tar.gz': HTTP status was '404 Not Found'
  • Chaitanya Bapat
    Chaitanya Bapat about 4 years
    trying URL 's3.amazonaws.com/mxnet-r/src/contrib/mxnet_0.10.1.tar.gz' Warning in install.packages : cannot open URL 's3.amazonaws.com/mxnet-r/src/contrib/mxnet_0.10.1.tar.gz': HTTP status was '403 Forbidden' Error in download.file(url, destfile, method, mode = "wb", ...) : cannot open URL 's3.amazonaws.com/mxnet-r/src/contrib/mxnet_0.10.1.tar.gz' Warning in install.packages : download of package ‘mxnet’ failed
  • Chaitanya Bapat
    Chaitanya Bapat about 4 years
    Most likely the package is no longer available at that link.
  • stats_noob
    stats_noob over 3 years
    Can you please take a look at my question? stackoverflow.com/questions/65495946/… thanks