创建python2.7环境
conda create --name py27 python=2.7
进入py2.7环境
conda activate py27
install caffe
conda install caffe-gpu
install opencv
pip install opencv-python
Install libboost (1.5 or higher is recommended):
sudo apt-get install libboost-all-dev
Install OpenGL, freeglut, and glew
sudo apt-get install freeglut3-dev
sudo apt-get install libglew-dev
Install libhdf5-dev library
sudo apt-get install libhdf5-dev
Install Dlib C++ library. Dlib should be compiled to shared objects. Check the comments in its CMakeList.txt.(http://dlib.net/)
网友评论