I started my mxnet package installation for R in ubuntu with the following command
install.packages("drat", repos="https://cran.rstudio.com")
drat:::addRepo("dmlc")
install.packages("mxnet")
while executing this command I got the following warning
Warning in install.packages :
package ‘mxnet’ is not available (for R version 3.4.4)
Then I went for the command
cran <- getOption("repos")
cran["dmlc"] <- "https://s3-us-west-2.amazonaws.com/apache-mxnet/R/CRAN/"
options(repos = cran)
install.packages("mxnet",dependencies = T)
At that time I got the warning
Warning in install.packages :
download of package ‘mxnet’ failed
For the first time I got installed the package ,but when I calling library(mxnet)
I got the waring Error in library(mxnet) : there is no package called ‘mxnet’
.After that I tried the same command above again ,at that time I got this error
Warning in install.packages :
download of package ‘mxnet’ failed
Please help me to solve this problem..