1. 程式人生 > >【原】Mac下使用Brew安裝node出錯

【原】Mac下使用Brew安裝node出錯

今天想在Mac下安裝React Native開發環境。在安裝node後,想要執行node -v命令檢視node版本時,出現錯誤。錯誤資訊如下:

node -v
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.58.dylib
Referenced from: /usr/local/bin/node
Reason: image not found
Abort trap: 6

經過在網上搜索,終於找到解決辦法。

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

再次執行node -v命令,問題已經解決。

node -v
v8.2.1