First ensure you have Homebrew version 0.9.5
or higher:
$ brew --version
0.9.5
Homebrew-Cask is implemented as a subcommand of Homebrew. All Homebrew-Cask commands begin with brew cask
. Homebrew-Cask has its own set of command verbs many of which are similar to Homebrew’s. The most frequently-used
commands are:
search
— searches all known Casksinstall
— installs the given Caskuninstall
— uninstalls the given Cask
The brew cask search
command accepts a series of substring arguments, and returns tokens representing matching Casks. Let’s see if there’s a Cask for Google Chrome:
$ brew cask search chrome
google-chrome
A search
command with no search term will list all available Casks:
$ brew cask search
# <list of all available Casks>
The command brew cask install
accepts a Cask token as returned by brew cask search
. Let’s try to install Google Chrome:
$ brew cask install google-chrome
==> Downloading https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg
==> Symlinking App 'Google Chrome.app' to '/Users/Your_Account_Name/Applications/Google Chrome.app'
🍺 google-chrome staged at '/opt/homebrew-cask/Caskroom/google-chrome/latest' (208 files, 184M)
Easy peasy:
$ brew cask uninstall google-chrome
This will both uninstall the Cask and remove symlinks which were created in ~/Applications
.
To uninstall all versions of a Cask, use --force
:
$ brew cask uninstall --force google-chrome
Note that uninstall --force
is currently imperfect. See the man page for more information.
info
— displays information about the given Casklist
— with no args, lists installed Casks; given installed Casks, lists staged filesfetch
— downloads remote application files for the given Cask to the local cache (with--force
, re-download even if already cached)doctor
— checks for configuration issuescleanup
— cleans up cached downloads (with--outdated
, only cleans old downloads)home
— opens the homepage of the given Cask; or with no arguments, the Homebrew-Cask project pageupdate
— a synonym forbrew update
zap
— try to remove all files associated with a Cask (may include resources shared with other applications)
The following commands are for Cask authors:
audit
— verifies installability of Caskscat
— dumps the given Cask to the standard outputcreate
— creates a Cask and opens it in an editoredit
— edits the given Cask
The following aliases and abbreviations are provided for convenience:
ls
—list
-S
—search
rm
,remove
—uninstall
up
—update
dr
—doctor
Homebrew/homebrew-completions supports bash
and fish
completions (only for brew-cask
right now). Install them with:
$ brew install homebrew/completions/brew-cask-completion
For zsh
completion support, simply run:
$ brew install `zsh-completions`
List all installed Casks:
$ brew cask list
adium google-chrome onepassword
Show details about a specific Cask:
$ brew cask info caffeine
caffeine: 1.1.1
Caffeine
http://lightheadsw.com/caffeine/
Not installed
https://github.com/caskroom/homebrew-cask/blob/master/Casks/caffeine.rb
==> Contents
Caffeine.app (app)
Since the Homebrew-Cask repository is a Homebrew Tap, you’ll pull down the latest Casks every time you issue the regular Homebrew command brew update
. Currently, Homebrew-Cask cannot always detect if an application has been updated. You can force an update via the command brew cask install --force
. We are working on improving this.
It is generally safe to run updates from within an application.
When a new version Homebrew-Cask is released, it will appear in the output of brew outdated
after running brew update
. You can upgrade it via the normal Homebrew brew upgrade
workflow:
$ brew update; brew cleanup; brew cask cleanup
The primary Homebrew-Cask Tap includes most of the Casks that a typical user will be interested in. There are a few additional Taps where we store different kinds of Casks.
Tap name | description |
---|---|
caskroom/versions | contains alternate versions of Casks (e.g. betas, nightly releases, old versions) |
caskroom/fonts | contains Casks that install fonts, which are kept separate so we can educate users about the different licensing landscape around font installation/usage |
caskroom/unofficial | contains Casks that install unofficial builds or forks |
You can tap any of the above with a brew tap
command:
$ brew tap <tap_name>
after which, Casks from the new Tap will be available to search
or install
just like Casks from the main Tap. brew update
will automatically keep your new Tap up to date.
You may also specify a fully-qualified Cask token (which includes the Tap) for any brew cask
command. This will implicitly add the Tap if you have not previously added it with brew tap
:
$ brew cask install caskroom/fonts/font-symbola
brew cask
accepts a number of options:
--version
: print version and exit--debug
: output debug information--no-binaries
: skip symlinking executable binaries into/usr/local/bin
You can also modify the default installation locations used when issuing brew cask install
:
--caskroom=/my/path
determines where the actual applications will be located. Should be handled with care — setting it outside/opt
or your home directory might mess up your system. Default is/opt/homebrew-cask/Caskroom
--appdir=/my/path
changes the path where the symlinks to the applications (above) will be generated. This is commonly used to create the links in the root Applications directory instead of the home Applications directory by specifying--appdir=/Applications
. Default is~/Applications
.--prefpanedir=/my/path
changes the path for PreferencePane symlinks. Default is~/Library/PreferencePanes
--qlplugindir=/my/path
changes the path for Quicklook Plugin symlinks. Default is~/Library/QuickLook
--fontdir=/my/path
changes the path for Fonts symlinks. Default is~/Library/Fonts
--binarydir=/my/path
changes the path for Binary symlinks. Default is/usr/local/bin
--input_methoddir=/my/path
changes the path for Input Methods symlinks. Default is~/Library/Input Methods
--screen_saverdir=/my/path
changes the path for Screen Saver symlinks. Default is~/Library/Screen Savers
To make these settings persistent, you might want to add the following line to your .bash_profile
or .zshenv
:
# Specify your defaults in this environment variable
export HOMEBREW_CASK_OPTS="--appdir=/Applications --caskroom=/etc/Caskroom"
Note that you still can override the environment variable HOMEBREW_CASK_OPTS
by explicitly providing options in the command line:
# Will force the Chrome app to be linked to ~/Applications
# even though HOMEBREW_CASK_OPTS specified /Applications
$ brew cask install --appdir="~/Applications" google-chrome
The default search algorithm is a lax substring approach, which does not use the command-line arguments exactly as given. If you need to specify a search more precisely, a single search argument enclosed in /
characters will be taken as a Ruby regular expression:
$ brew cask search '/^google.c[a-z]rome$/'
google-chrome
Most brew cask
commands can accept a Cask token as an argument. As described above, the token on the command line can take the form of:
- A token as returned by
brew cask search
, eg:google-chrome
. - A fully-qualified token which includes the Tap, eg:
caskroom/fonts/font-symbola
.
brew cask
also accepts three other forms as arguments:
- A path to a Cask file, eg:
/usr/local/Library/Taps/caskroom/homebrew-cask/Casks/google-chrome.rb
. - A
curl
-retrievable URI to a Cask file, eg:https://raw.githubusercontent.com/caskroom/homebrew-cask/f25b6babcd398abf48e33af3d887b2d00de1d661/Casks/google-chrome.rb
. - A file in the current working directory, eg:
my-modfied-google-chrome.rb
. Note that matching Tapped Cask tokens will be preferred over this form when there is a conflict. To force the use of a Cask file in the current directory, specify a pathname with slashes, eg:./google-chrome.rb
.
The last three forms are intended for users who wish to maintain private Casks.
You can add Casks to your existing (or new) Taps: just create a directory named Casks
inside your Tap, put your Cask files there, and everything will just work.