Skip to content

Instantly share code, notes, and snippets.

@DexGroves
Last active March 18, 2017 11:01
Show Gist options
  • Save DexGroves/e9ea1125dc1e5b942e83d6e3f9e9cbbc to your computer and use it in GitHub Desktop.
Save DexGroves/e9ea1125dc1e5b942e83d6e3f9e9cbbc to your computer and use it in GitHub Desktop.
install mxnet
sudo apt-get update
sudo apt-get install -y build-essential git libatlas-base-dev libopencv-dev
git clone --recursive https://github.com/dmlc/mxnet
cd mxnet;
cp make/config.mk .
#add CUDA options
echo "USE_CUDA=1" >>config.mk
echo "USE_CUDA_PATH=/usr/local/cuda-7.5" >>config.mk
make -j4
make rpkg
R CMD INSTALL mxnet_*.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment