Difference between revisions of "Homebrew"
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
==brew ant== | ==brew ant== | ||
<code>brew install ant</code> | <code>brew install ant</code> | ||
+ | |||
+ | ==tap science== | ||
+ | <code>brew tap homebrew/science</code> | ||
==install opencv== | ==install opencv== | ||
− | |||
− | [https://github.com/opencv-java/opencv-java-tutorials/blob/master/docs/source/01-installing-opencv-for-java.rst | + | [https://github.com/opencv-java/opencv-java-tutorials/blob/master/docs/source/01-installing-opencv-for-java.rst source] |
if you are not comfortable with vim | if you are not comfortable with vim |
Revision as of 05:44, 2 November 2017
Homebrew is a package manager that allows you to install software. To install Homebrew, follow these Terminal command line instructions:
Contents
install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
install XCode Command Line Tools
xcode-select --install
Agree if asked to install XCode Command Line Tools.
check homebrew
brew doctor
brew graphviz (optional)
brew install graphviz
brew ant
brew install ant
tap science
brew tap homebrew/science
install opencv
if you are not comfortable with vim
export HOMEBREW_EDITOR=nano
brew edit opencv
change: -DBUILD_opencv_java=OFF
to -DBUILD_opencv_java=ON
brew install --build-from-source opencv