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
  • 23,658
  • 28
  • 68
  • 99

1 Answers1

2

You should run:

brew tap homebrew/science brew install r

since R is maintained in the homebrew/science tap.

Tim Smith
  • 5,827
  • 1
  • 23
  • 31
  • `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