ctvanzandt42
ctvanzandt42

Reputation: 51

Trying to start my server on a Node project, but getting this error

I'm trying to start a Node.js project that I did for my boot camp, and I'm getting this error back:

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

I downloaded High Sierra recently, but I don't know if this would do anything.

Upvotes: 1

Views: 569

Answers (1)

Matthew
Matthew

Reputation: 667

It seems like you just needed to update your brew:

brew update
brew upgrade

Upvotes: 2

Related Questions