Skip to content

Instantly share code, notes, and snippets.

@takayama
Last active August 29, 2015 14:07
Show Gist options
  • Save takayama/5f4981bd199f0f24b056 to your computer and use it in GitHub Desktop.
Save takayama/5f4981bd199f0f24b056 to your computer and use it in GitHub Desktop.
Marvericksにアップデートした時にbrewで問題が出た場合

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}

@ashizawa
Copy link

ashizawa commented Oct 8, 2014

gj

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