Last active
March 18, 2017 11:01
-
-
Save DexGroves/e9ea1125dc1e5b942e83d6e3f9e9cbbc to your computer and use it in GitHub Desktop.
install mxnet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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