Last active
August 22, 2018 13:27
-
-
Save ontheklaud/36b2b983b4776f44ff797b1fceb71c88 to your computer and use it in GitHub Desktop.
Caffe bootstrap script for CentOS 7/Anaconda3 Python
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
#!/bin/bash | |
# Enable EPEL-Release | |
sudo yum -y install epel-release | |
# CMAKE, Boost | |
sudo yum -y install cmake boost boost-devel | |
# OpenCV, Snappy, Protobuf | |
sudo yum -y install opencv opencv-devel snappy snappy-devel protobuf protobuf-devel | |
# GFlags, Glog | |
sudo yum -y install gflags gflags-devel glog glog-devel | |
# HDF5, LevelDB, LMDB | |
sudo yum -y install hdf5 hdf5-devel leveldb leveldb-devel lmdb lmdb-devel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment