Installing node with brew fails on Mac OS Sierra

后端 未结 21 2184
执笔经年
执笔经年 2021-01-30 05:50

I\'m trying to install node with homebrew on macOS Sierra. I run

 brew install node

After a seemingly successful install I get the following

21条回答
  •  旧巷少年郎
    2021-01-30 06:55

    This is the series of incantations that eventually worked for me based on this link suggested by @robertklep and @vovkasm.

    brew uninstall --force node
    brew uninstall icu4c && brew install icu4c
    brew unlink icu4c && brew link icu4c --force
    brew install node
    

    I'm not sure if they're all needed, but given that I can't get my machine in the previous state... I'll just leave this info here, maybe it'll be useful for somebody else.

提交回复
热议问题