Last active
August 22, 2018 13:54
-
-
Save ontheklaud/62c6e94d141e4699a469a064248c2fa5 to your computer and use it in GitHub Desktop.
Caffe bootstrap script for CentOS 7/Anaconda3 Python & Conda
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 | |
# Conda already have MKL | |
conda update mkl | |
# CMAKE, Boost | |
conda install -y cmake boost libboost | |
# OpenCV, Protobuf | |
conda install -y opencv libopencv protobuf libprotobuf snappy | |
# GFlags, Glog | |
conda install -y gflags glog | |
# HDF5, LevelDB, LMDB | |
conda install -y hdf5 leveldb lmdb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment