unable to download mxnet package on RStudio Desktop and Rstudio Cloud

facing issues while downloading mxnet package on mac OS on Rstudio Desktop and RStudio Cloud.

You need to provide more information, what are the commands you are using to install and what is the error message you get?

I am tried to install MXNet on Mac OS by using these codes separately:

cran <- getOption("repos")
cran["dmlc"] <- "https://s3-us-west-2.amazonaws.com/apache-mxnet/R/CRAN/"
options(repos = cran)
install.packages("mxnet")

I am using R having configuration:
R version 3.6.3 (2020-02-29) -- "Holding the Windsock"
Copyright (C) 2020 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)
I have used these two codes

error shown:
Screenshot 2020-08-09 at 7.17.52 PM

I have also used:
cran <- getOption("repos")
cran["dmlc"] <- "https://apache-mxnet.s3-accelerate.dualstack.amazonaws.com/R/CRAN/"
options(repos = cran)
install.packages("mxnet")

Screenshot 2020-08-09 at 7.20.31 PM

The link seems to be broken and I can't find a working link even on their website, I think you are more likely to get help about this issue on their own forum

https://discuss.d2l.ai/c/d2l-en/mxnet/

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.