27
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

homebrew(-cask)でIntelliJ IDEAをインストールする

Last updated at Posted at 2014-04-06

(個人用にライセンス買ったっきり、まだ入れてなかったので笑)

検索すると...

$ brew cask search intellij
==> Partial matches
intellij-idea	    intellij-idea-ce

あった!

  • intellij-idea … Ultimate Edition (有償版/機能制限なし) ←こちらを入れる
  • intellij-idea-ce … Community Edition (無償版/機能制限あり)

※参考:IntelliJ IDEA Downloadページ

(事前準備) homebrew-cask のインストール

homebrew-cask

$ brew tap phinze/homebrew-cask
$ brew install brew-cask

IntelliJ IDEA のインストール

パッケージ情報を確認

$ brew cask info intellij-idea
intellij-idea: 13.1.1
https://www.jetbrains.com/idea/index.html
Not installed
https://github.com/phinze/homebrew-cask/commits/master/Casks/intellij-idea.rb
==> Contents
  IntelliJ IDEA 13.app (link)

2014/04現在での最新Versionである13.1.1が利用可能。

インストール

$ brew cask install intellij-idea
==> Downloading http://download-cf.jetbrains.com/idea/ideaIU-13.1.1.dmg
######################################################################## 100.0%
==> Symlinking App 'IntelliJ IDEA 13.app' to '/Users/XXX/Applications/IntelliJ IDEA 13.app'
?  intellij-idea installed to '/opt/homebrew-cask/Caskroom/intellij-idea/13.1.1' (5925 files, 605M)

完了(๑╹ڡ╹๑)

~/Applications/ 下にショートカットが作られている。

起動もOK
2014-04-06 23.11.35.png

homebrew-cask便利すぎ!

(補足) Brewfile なら…

$ cat Brewfile
# install brew-cask
tap phinze/homebrew-cask
install brew-cask
# install intellij
cask install intellij-idea

# 上記内容の Brewfile があるディレクトリで
$ brew bundle

でおk

27
24
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
27
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?