Homebrew on Mac Os 10.10 or 10.11 is not working

后端 未结 2 1004
南笙
南笙 2021-02-19 06:15

After installed Homebrew, when I run any brew ***, I keep getting this error:

Homebrew requires Leopard or higher. For Tiger support, see:
https://g         


        
2条回答
  •  闹比i
    闹比i (楼主)
    2021-02-19 06:26

    Above change did not work for me.. it gave the error Error: Mac OS X `10.1' is invalid

    I had to change the brew.rb to:

    if MACOS_VERSION == 10.10
            MACOS_VERSION = 10.99
    end
    

    before

    if MACOS and MACOS_VERSION < 10.5
    

提交回复
热议问题