我正在尝试用brew-木桶安装虚拟盒,但是这会返回这样的错误,而且我无法安装virtualbox。我使用MacOSX Lion10.7.5和自制0.9.5,ruby2.1.0-P0
我已经在下面的终端中描述了这个过程。
首先,成功执行brew tap命令。
$ brew tap phinze/cask
Cloning into '/usr/local/Library/Taps/phinze/homebrew-cask'...
remote: Reusing existing pack: 32538, done.
remote: Counting objects: 36, done.
remote: Compressing objects: 100% (36/36), done.
remote: Total 32574 (delta 16), reused 2 (delta 0)
Receiving objects: 100% (32574/32574), 11.72 MiB | 379 KiB/s, done.
Resolving deltas: 100% (19138/19138), done.
Tapped 1 formula
It looks like you tapped a private repository. To avoid entering your
credentials each time you update, you can use git HTTP credential caching
or issue the following command:
cd /usr/local/Library/Taps/phinze/homebrew-cask
git remote set-url origin git@github.com:phinze/homebrew-cask.git第二,我已经安装了如下所示的brew桶
$ brew install brew-cask
Warning: brew-cask-0.35.0 already installed第三,当我试图安装virtualbox时,它返回这种错误,并且无法安装Virtualbox。
$ brew cask install virtualbox
==> Removing legacy Tap
Error: No available cask for virtualbox发布于 2014-05-22 01:47:09
自制木桶存储库has moved。你试过:
brew tap caskroom/cask
brew install brew-cask
brew cask install virtualbox而不是芬兹?
更新:
正如乔恩纳利所指出的,brew install brew-cask现在是deprecated
重要的2015年12月份更新:自制木桶现在将与家用啤酒一起更新(详见#15381 )。如果还没有,请运行
brew uninstall --force brew-cask; brew update切换到新系统。
发布于 2015-06-10 07:05:37
brew tap caskroom/cask
brew install brew-cask
brew cask install virtualbox为我工作过。
发布于 2015-12-28 17:13:23
首先,我得到了“多个水龙头”错误:
~ $ brew install brew-cask
Error: Formulae found in multiple taps:
* caskroom/cask/brew-cask
* phinze/cask/brew-cask然后,我包括了一条通往酿制木桶的全(收银室)路径,它起了作用:
brew install caskroom/cask/brew-cask
brew cask install virtualboxhttps://stackoverflow.com/questions/23796448
复制相似问题