3
2

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 1 year has passed since last update.

HomebrewでIntelliJ IDEAをインストールする方法

Last updated at Posted at 2022-01-27

皆さんは統合開発環境(IDE)は何を使っていますか?

僕は前職までWindows✖️Eclipseを使っていましたが、転職して貸与PCがMacだったこと、全社的にIntelliJ-IDEAが標準という点からIntelliJ-IDEAを使っています。

じゃあIntelliJ-IDEAをMacにインストールしましょう、となったときにHomebrew(--cask)でのインストールが簡単で便利だったので、インストール方法をまとめておきたいと思います!

この記事でわかること

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

前提

これから述べるインストール方法は、お使いのMacにHomebrewがインストールされていることが前提となります。

インストールがまだ終わっていないという方はこちらを参考にHomebrewのインストールをやりましょう!

IntelliJ-IDEAをインストールしよう

さあ、HomebrewでIntelliJ-IDEAをインストールしていきましょう。

まずはターミナルを開いて、IntelliJ-IDEAがインストール可能かを確認しましょう。

% brew search intellij                  
==> Formulae
intercal

==> Casks
intellij-idea  intellij-idea-ce 
homebrew/cask-versions/intellij-idea-ce19
homebrew/cask-versions/intellij-idea19

==> Casksの方に、intellij-ideaやintellij-idea-ceが出てきましたね。

どちらをインストールするのかですが、それぞれ以下の意味があります。

  • intellij-idea … Ultimate Edition (有償版)
  • intellij-idea-ce … Community Edition (無償版)

今回は無償版をインストールしていきます。

以下のコマンドを入力して実行しましょう。

% brew install --cask intellij-idea-ce
% brew install --cask intellij-idea-ce
Running `brew update --preinstall`...
==> Auto-updated Homebrew!
Updated 2 taps (homebrew/core and homebrew/cask).
==> Updated Formulae
Updated 34 formulae.
==> Updated Casks
Updated 8 casks.

==> Downloading https://download.jetbrains.com/idea/ideaIC-2021.3.1-aarch64.dmg
==> Downloading from https://download-cdn.jetbrains.com/idea/ideaIC-2021.3.1-aarch64.dmg
######################################################################## 100.0%
==> Installing Cask intellij-idea-ce
==> Moving App 'IntelliJ IDEA CE.app' to '/Applications/IntelliJ IDEA CE.app'
🍺  intellij-idea-ce was successfully installed!

intellij-idea-ce was successfully installed と出ましたね。たったこれだけです。

念のため、インストールされているかも確認してみましょう。

% brew list --cask
adoptopenjdk11
alfred
chromedriver
dbeaver-community
docker
intellij-idea-ce ⇦ あった!

もしくは、LaunchpadのなかにIntelliJ IDEA CEのアイコンがあることでも確認できます。

image.png

以上です!

IntelliJ IDEAはとても機能が充実していてプログラミングの助けになるツールなので、ぜひインストールしてプログラミングライフを豊かなものにしていきましょう🙌

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?