nkimraの日記

技術的なメモのブログ。

Homebrewのインストール

Homebrewでインストールするもの

#Homebrew自体のインストール
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

#wget
brew install wget

#brew-cask
brew install brew-cask

#git
brew install git

#eclipse
brew cask install eclipse-platform

#Atom
brew cask install atom

#gradle
brew install gradle

#composerのインストール準備
xcode-select --install
brew install PHP56

#composer
brew install homebrew/php/composer

caskのコマンド

#検索
brew cask search eclipse

#アンインストール
brew cask uninstall hoge

#インストール一覧
brew cask list
<||

設定
>|bash|
vi ~/.bash_profile
export PATH=/usr/local/bin:$PATH
export PATH=/usr/local/sbin:$PATH
source ~/.bash_profile