1

How to install R on Mac OS X 10.10.2 using Homebrew? If I simply do

brew search R

or

brew install R

it does not do the trick as it did in 10.9.

qazwsx
  • 25,536
  • 30
  • 72
  • 106

1 Answers1

2

You should run:

brew tap homebrew/science brew install r

since R is maintained in the homebrew/science tap.

Tim Smith
  • 6,127
  • 1
  • 26
  • 32
  • `homebrew/science` is now deprecated. `r` has been moved to `homebrew/homebrew-core`. See the [readme](https://github.com/Homebrew/homebrew-science/blob/master/README.md). – jschoi Jan 28 '18 at 19:37