Difference between revisions of "Homebrew"

From CSE231 Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
Homebrew is a package manager that allows you to install software. To install Homebrew, follow these Terminal command line instructions:
 
Homebrew is a package manager that allows you to install software. To install Homebrew, follow these Terminal command line instructions:
 +
 +
==install homebrew==
  
 
<code>/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"</code>
 
<code>/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"</code>
  
repeated for copy to clipboard:
+
==install opencv==
<clippy show="false">/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"</clippy>
+
 
 +
<code>brew doctor</code>
 +
 
 +
<code>brew tap homebrew/science</code>
  
<br>
+
<code>brew install opencv3 --with-java --with-contrib</code>
  
  
source: http://brew.sh
+
repeated for copy to clipboard:
  
 +
<clippy show="true">/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"</clippy>
  
<br>
+
<clippy show="true">brew doctor</clippy>
install opencv
+
 
<br>
+
<clippy show="true">brew tap homebrew/science</clippy>
<code>brew doctor</code>
+
 
<br>
+
<clippy show="true">brew install opencv3 --with-java --with-contrib</clippy>
<code>brew tap homebrew/science</code>
 
<br>
 
<code>brew install opencv3 --with-java --with-contrib</code>
 

Revision as of 22:13, 10 February 2017

Homebrew is a package manager that allows you to install software. To install Homebrew, follow these Terminal command line instructions:

install homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

install opencv

brew doctor

brew tap homebrew/science

brew install opencv3 --with-java --with-contrib


repeated for copy to clipboard:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

brew doctor

brew tap homebrew/science

brew install opencv3 --with-java --with-contrib