LoginSignup
23
27

More than 3 years have passed since last update.

HomebrewとHomebrew-caskのインストール

Posted at

HomebrewとHomebrew-caskのインストール

Macにパッケージ管理ソフトであるHomebrewとHomebrew-caskをインストールしたときのメモ

Homebrewのインストール

Homebrewインストールコマンド

  • 管理権限のあるアカウントでターミナル起動
  • 余計な雑念を捨て以下を実行
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Homebrewの動作確認

brew

コマンドがずらっとでてくる(はず)。

Homebrewのバージョン確認

brew config

Homebrew-Caskのインストール

Homebrew-caskインストールコマンド

HomebrewはCUIが中心なので、アプリケーションを入れたいならHomebrew-caskをインストールする。

brew install cask

これで、brewにcaskオプションが使える様になる

Homebrew-caskの動作確認

brew cask

基本的なHomebrew-caskのコマンド

  • Homebrew-caskで入れられるアプリを探す
    brew cask search

  • 探したキーを元にHomebrew-caskでアプリケーションをインストールする(Google Chromeの場合)
    brew cask install google-chrome

  • Homebrew-caskでのインストール済みのアプリケーションのリストを表示
    brew cask list

23
27
1

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
23
27