Skip to content

Instantly share code, notes, and snippets.

@evalphobia
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evalphobia/9014032 to your computer and use it in GitHub Desktop.
Save evalphobia/9014032 to your computer and use it in GitHub Desktop.

初期設定メモ

  1. Xcodeをインストールする
    • AppStoreからインストールする
  2. Command Line Tools for Xcodeをインストールする
  3. homebrew(Mac用のパッケージ管理システムの一つ)をインストールする
  4. homebrew-cask をインストールする
  5. brew, cask 経由で必要なアプリをインストールする

1. Xcodeをインストールする

  • AppStoreからインストールします

2. Command Line Tools for Xcodeをインストールする

ターミナルを開き、下記コマンドを実行します

$ xcode-select --install

3. homebrew(Mac用のパッケージ管理システムの一つ)をインストールする

$ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

4. homebrew-cask をインストールする

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

5. brew, cask 経由で必要なアプリをインストールする

例:

$ brew cask install google-chrome

#=== Brewfileを利用する場合 ===#
# curl -O https://gist.githubusercontent.com/evalphobia/9014837/raw/fa91563021e3b59e8b1d65da891da232f71549bc/Brewfile
# brew buldle Brewfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment