brew uninstall --ignore-dependencies node icu4c
brew install node
-
-
Save berkedel/d1fc6d13651c16002f64653096d1fded to your computer and use it in GitHub Desktop.
@mimoo Same situation here. After do brew update git
brew reinstall icu4c
worked for me!
brew reinstall icu4c
worked!
brew reinstall icu4c
worked!
For me given below solution worked on Mac
rm -rf /usr/local/Cellar/icu4c
brew reinstall icu4c
Then
gem uninstall charlock_holmes
gem install charlock_holmes
Worked for me, thanks!
For me given below solution worked on Mac
rm -rf /usr/local/Cellar/icu4c brew reinstall icu4c
Then
gem uninstall charlock_holmes gem install charlock_holmes
this worked for me!!!
brew uninstall --ignore-dependencies node icu4c && brew install node
worked perfectly!
brew uninstall icu4c
worked for me
This fixed the issue for me as well 🚀
I followed this stack overflow answer and it worked.
https://stackoverflow.com/a/74856087/2761923
After searching for a solution for a few hours, this ended up working for me. Thank you 🥳
brew uninstall icu4c
brew uninstall icu4c
Updating the php version worked for me (from 7.4 to 8.1)
brew uninstall php@7.4
rm -rf /usr/local/etc/php
brew reinstall php
Thanks, it works for me!
The brew reinstall icu4c
works for me 👍
brew uninstall --ignore-dependencies node icu4c
works for me
Updating the php version worked for me (from 7.4 to 8.1)
brew uninstall php@7.4
rm -rf /usr/local/etc/php
brew reinstall php
ok thank you
This is work on my macbook air m1. Fixed every version installed php
brew upgrade icu4c
brew upgrade
i have same issue but ,,,
i have multiple node version on brew 12, 18, and 21.
on version 18 there is no error .
only error on version 12.
> brew list | grep node
// error when check version `node -v`
node // V21.1.0 // works
node@12 // error // this no longer on brew install node@12 be aware before re install / uninstall
node@14 // not test
node@18 // works
# export PATH="/opt/homebrew/opt/node@12/bin:$PATH"
# export PATH="/opt/homebrew/opt/node@14/bin:$PATH"
# export PATH="/opt/homebrew/opt/node/bin:$PATH"
export PATH="/opt/homebrew/opt/node@18/bin:$PATH"
Thank you very much!!!
Worked, thanks for unblocking me!
brew uninstall --ignore-dependencies node icu4c && brew install node
Worked!!
Updating the php version worked for me (from 7.4 to 8.1)
brew uninstall php@7.4
rm -rf /usr/local/etc/php
brew reinstall php
You're a lifesaver!!! Thank you! BTW, I had multiple versions (brew list | grep php
), so I removed all but php (with no version) and then just did the reinstall and now it's perfect.
For me given below solution worked on Mac
rm -rf /usr/local/Cellar/icu4c brew reinstall icu4c
Then
gem uninstall charlock_holmes gem install charlock_holmes
This worked for me!! Thanks
brew uninstall --ignore-dependencies node icu4c && brew install node
Worked!!
It worked for me. Thanks!
check you versions with brew list | grep node
, delete all of them e.g. brew uninstall node@12
, install node again brew install node
. worked for me
just happened to me after I did
brew upgrade git
I believe, solution here worked so thx!