Skip to content

Instantly share code, notes, and snippets.

@Samk13
Created January 24, 2026 18:27
Show Gist options
  • Select an option

  • Save Samk13/115e53a0c85a4c0cbc082ebd66ce74d4 to your computer and use it in GitHub Desktop.

Select an option

Save Samk13/115e53a0c85a4c0cbc082ebd66ce74d4 to your computer and use it in GitHub Desktop.
Fix Homebrew Deprecated / Disabled Formula Warnings

Fix Homebrew Deprecated / Disabled Formula Warnings

Warning: Some installed formulae are deprecated or disabled.
You should find replacements for the following formulae:
  icu4c@77

Commands

brew update
brew upgrade

# check which installed formulae depend on the deprecated/disabled formula
brew uses --installed <formula>@<version>

# reinstall the dependent formulae
brew reinstall <dependent-formula-1> <dependent-formula-2> ...

# double check no installed formulae depend on the deprecated/disabled formula
brew uses --installed <formula>@<version>

# uninstall the deprecated/disabled formula
brew uninstall <formula>@<version>

# cleanup and verify
brew cleanup
brew doctor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment