Ask Your Question
0

What is the cause of the error "dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.62.dylib" that occurs after installing node through brew on Mac, when running php?

asked 2023-07-05 04:12:06 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-07-05 04:36:02 +0000

scrum gravatar image

The error "dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.62.dylib" occurs due to a missing library that is required by the PHP extension intl. This library is installed through Homebrew along with the icu4c formula. To resolve this issue, run the following command:

brew install icu4c

After installing icu4c, add the following line to your .bashrc or .zshrc file:

export PATH="/usr/local/opt/icu4c/bin:$PATH"

Then, run the following command to link the icu4c libraries:

brew link --force icu4c

Restart your terminal, and the error should be resolved.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-05 04:12:06 +0000

Seen: 7 times

Last updated: Jul 05 '23