Last active
March 7, 2017 23:49
-
-
Save rkosti/f88a856f1f3e93ca7d086c1833c4e717 to your computer and use it in GitHub Desktop.
installation script of caffe on sunai servers
This file contains 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
git clone https://github.com/BVLC/caffe.git | |
mkdir caffe/build | |
cd caffe/build | |
# these hacks are required | |
export LC_ALL=es_ES.UTF-8 # this locale variable is unset | |
cmake -DBUILD_matlab=ON .. # matlab is disabled by default | |
make all # this takes a while | |
make runtest # all green | |
cd - | |
echo "export LC_ALL=es_ES.UTF-8" >> ~/.bash_profile | |
echo "export CAFFE_ROOT=$PWD/caffe" >> ~/.bash_profile | |
echo "export PYTHONPATH=$CAFFE_ROOT/python:$PYTHONPATH" >> ~/.bash_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment