before_install.osx.sh 336 字节
Newer Older
Y
Yu Yang 已提交
1 2 3 4
#!/bin/bash
brew update
brew tap homebrew/science
brew install python
Y
Yu Yang 已提交
5 6
sudo pip install --upgrade protobuf
brew install cmake python glog gflags openblas wget md5sha1sum protobuf
Y
Yu Yang 已提交
7 8 9 10 11 12

wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz -O gtest.tar.gz
tar xf gtest.tar.gz
cd googletest-release-1.8.0/
cmake .
make install