The following guide will help you install MXNet-$binding on $OS.
The following are required prerequisites:
- Install $prerequisite:
brew/apt/yum/conda/pip install $package
{repeat}
The following are recommended prerequisites:
- Install a math library. MKL is recommended.
Option A: Install MKL
brew/apt/yum install mkl
Option X: Install Y
brew/apt/yum install Y
- Install some other recommended prerequisite.
brew/apt/yum install $other
- Follow-up steps (optional)
- Install $mxnet-package:
pip install $mxnet-package
- Follow-up steps (optional)
- Install mxnet-$binding:
# custom instructions
- Follow-up steps (optional)
-
Tutorials
- x
- y
- z
-
Examples
- x
- y
- z
The following script contains the default recommended installation options.
# Example to install MXNet-R on macOS:
# Install prerequisites
brew install opencv
# Install recommended math library
brew install [email protected]
ln -sf /usr/local/opt/openblas/lib/libopenblasp-r0.3.* /usr/local/opt/openblas/lib/libopenblasp-r0.3.1.dylib
# Install MXNet-R
echo "cran <- getOption("repos")" | R
echo "cran["dmlc"] <- "https://apache-mxnet.s3-accelerate.dualstack.amazonaws.com/R/CRAN/" | R
echo "options(repos = cran)" | R
echo "install.packages("mxnet")" | R
When updating this installation guide, be sure to update the default installation script. It will be tested through CI.