Library not loaded error after brew install php56

后端 未结 7 1354
滥情空心
滥情空心 2021-01-12 06:07

I\'m upgrading from php5.5 to php5.6 on OSX Mavericks using homebrew. I run

brew install php56

Everything runs and completes fine but when

7条回答
  •  迷失自我
    2021-01-12 06:44

    dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.53.dylib

    It sounds like an issue with icu4c. So try:

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

    In case of further issues, investigate them by brew doctor.

提交回复
热议问题