如何使用家酿木桶安装升华文本3

如何使用家酿木桶安装升华文本3?我只看到崇高的文本2时,使用家酿的搜索。我甚至试着打开 自制/版本,但是没有成功。

117499 次浏览
brew install caskroom/cask/brew-cask
brew tap caskroom/versions
brew cask install sublime-text

Weird how I will struggle with this for days, post on StackOverflow, then figure out my own answer in 20 seconds.

[edited to reflect that the package name is now just sublime-text, not sublime-text3]

[edit]: As of 2022-11-07, above is incorrect.

See taylorthurlow's correct answer.

$ brew tap caskroom/cask
$ brew install brew-cask
$ brew tap caskroom/versions
$ brew cask install sublime-text

I did not have brew cask installed so I had to install it first,so these were the steps I followed:

brew install caskroom/cask/brew-cask
brew tap caskroom/versions
brew cask install sublime-text

As of late May, 2021, Sublime Text 4 has been released. As a result, the old solution to installing Sublime Text 3 via Homebrew will now install Sublime Text 4 instead. If this is what you actually want, then the following brew installation command will install it:

brew install --cask sublime-text

Currently, there is no available cask on Homebrew which will allow the installation of Sublime Text 3 instead of Sublime Text 4.

As a side note, Sublime Text 2 is available in the sublime-text2 cask.


Historical note: This question originally was motivated by the fact that the sublime-text cask was Sublime Text 2 instead of Sublime Text 3. As of around May 2016, this is no longer the case.

An update

Turns out now brew cask install sublime-text installs the most up to date version (e.g. 3) by default and brew cask is now part of the standard brew-installation.

As per latest updates, caskroom packages have moved to homebrew. So try following commands:

brew tap homebrew/cask
brew cask install sublime-text

These 2 terminal commands will be enough for installing sublime.

To install Sublime Text 3 run:

brew install --cask sublime-text

reference: https://formulae.brew.sh/cask/sublime-text

Please note that brew cask <command> was deprecated in favor of brew <command> --cask in Homebrew 2.6.0. So as of 2021, you can use:

brew install --cask sublime-text