突然,brew给了我警告:
Warning: You have external commands with conflicting names.
Found command `brew-cask-tests` in following places:
/usr/local/Library/Taps/caskroom/homebrew-cask/cmd/brew-cask-tests.rb
/usr/local/Library/Homebrew/cask/cmd/brew-cask-tests.rb
Found command `brew-cask` in following places:
/usr/local/Library/Taps/caskroom/homebrew-cask/cmd/brew-cask.rb
/usr/local/Library/Homebrew/cask/cmd/brew-cask.rb对此我能做些什么呢?
发布于 2016-08-23 06:24:28
对我来说,修复方法是运行以下命令:
brew update && brew uninstall --force brew-cask
这似乎与最近对cask包的更改有关:https://github.com/caskroom/homebrew-cask/releases/tag/v0.60.0
“注意:这是Homebrew-cask的最终版本。从该版本开始,brew不再需要安装brew-cask。
brew tap caskroom/cask将作为Homebrew外部命令安装brew-cask,而brew update将使其保持最新。
你可以通过brew update && brew uninstall --force brew-cask来清理。“
https://stackoverflow.com/questions/39046189
复制相似问题