Skip to content

Instantly share code, notes, and snippets.

@ashizawa
Forked from takayama/brew_marvericks_update.md
Last active August 29, 2015 14:07
Show Gist options
  • Save ashizawa/aceac3a8f442c0e51e5e to your computer and use it in GitHub Desktop.
Save ashizawa/aceac3a8f442c0e51e5e to your computer and use it in GitHub Desktop.

Marvericksにアップデートした時にbrewで問題が出た場合

以下を試す

$ brew list | xargs -I{} brew upgrade {}
$ brew list | xargs -I{} brew unlink {} --force
$ brew list | xargs -I{} brew link {} --force

エラーになったパッケージは入れ直す

$ brew unlink ${PACKAGE} --force
Error: ${PACKAGE} has multiple installed versions

$ brew uninstall ${PACKAGE}
$ brew install ${PACKAGE}

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