Skip to content

Instantly share code, notes, and snippets.

@ontheklaud
Last active August 22, 2018 13:27
Show Gist options
  • Save ontheklaud/36b2b983b4776f44ff797b1fceb71c88 to your computer and use it in GitHub Desktop.
Save ontheklaud/36b2b983b4776f44ff797b1fceb71c88 to your computer and use it in GitHub Desktop.
Caffe bootstrap script for CentOS 7/Anaconda3 Python
#!/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