brew install coreutils failing 10.9.5 OSX

后端 未结 2 1709
南旧
南旧 2021-01-16 16:06

It has been 2 days that I have failed to install coreutils.

Last 15 lines from /Users/Mehdi/Library/Logs/Homebrew/coreutils/03.make:

src/ginsta         


        
相关标签:
2条回答
  • 2021-01-16 16:25

    This might be a stupid question but why are you still running OS 10.9? The current version is 10.12 and 10.13 will become out pretty soon. I'm not sure if this is related in any way to your issue but even the error message tells you that you "may encounter build failures or other breakages".

    In short: Unless you have a very good reason not to (e.g. some apps that don't run on newer versions of macOS), I suggest updating to macOS 10.12 and see if it works there.

    0 讨论(0)
  • 2021-01-16 16:33

    As stated in Clemens’ answer, Homebrew doesn’t support macOS 10.9. You can either:

    • Try TigerBrew, a fork of Homebrew for old macOS versions
    • Install coreutils from source, with something like the following:

      wget https://ftpmirror.gnu.org/coreutils/coreutils-8.25.tar.xz
      tar xJf coreutils-8.25.tar.xz
      cd coreutils-8.25/
      ./configure --prefix=/usr/local
      make
      sudo make install
      
    0 讨论(0)
提交回复
热议问题