How to Install Sublime Text 3 using Homebrew

前端 未结 6 1401
青春惊慌失措
青春惊慌失措 2021-01-30 00:33

How can I use homebrew cask to install Sublime Text 3? I only see sublime text 2 in the repos. I even tried tapping homebrew/versions, but no luck.

Thanks!

EDIT:

相关标签:
6条回答
  • 2021-01-30 01:01

    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.

    0 讨论(0)
  • 2021-01-30 01:15
    $ brew tap caskroom/cask
    $ brew install brew-cask
    $ brew tap caskroom/versions
    $ brew cask install sublime-text
    
    0 讨论(0)
  • 2021-01-30 01:19

    I originally used this page to solve the same problem in the past - however it would appear as if the sublime-text cask has been updated to now be the most recent release of Sublime Text 3. No workarounds are necessary anymore.

    Installation is as simple as brew cask install sublime-text.

    0 讨论(0)
  • 2021-01-30 01:19

    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.

    0 讨论(0)
  • 2021-01-30 01:24

    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
    
    0 讨论(0)
  • 2021-01-30 01:25
    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]

    0 讨论(0)
提交回复
热议问题