Skip to content

Instantly share code, notes, and snippets.

@marzvrover
Created January 22, 2019 21:08
Show Gist options
  • Save marzvrover/652042decae0bc8ead772c3399d42e08 to your computer and use it in GitHub Desktop.
Save marzvrover/652042decae0bc8ead772c3399d42e08 to your computer and use it in GitHub Desktop.
Fix for "dyld: Library not loaded"

For errors similar to: (this example uses php)

dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.62.dylib
  Referenced from: /usr/local/bin/php
  Reason: image not found
Abort trap: 6

then run

brew uninstall --ignore-dependencies php
brew install php

The issue should now be resolved; however, you may need also run brew link php.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment