February 2020
Intermediate to advanced
372 pages
9h 26m
English
Starting on a system where Xcode and its command-line tools are already set up, the following steps will give us an OpenCV installation via Homebrew:
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.github usercontent.com/Homebrew/install/master/install)"
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
Save the file and run this command to refresh PATH:
$ source ~/.profile
Note that executables installed by Homebrew now take precedence over executables installed by the system. ...