Skip to content

Instantly share code, notes, and snippets.

@tmknom
Created January 15, 2015 09:50
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 tmknom/6c3b183a77b19bafb479 to your computer and use it in GitHub Desktop.
Save tmknom/6c3b183a77b19bafb479 to your computer and use it in GitHub Desktop.
Macの開発環境構築用スクリプト(Homebrewは事前にインストールしておくこと)
export HOMEBREW_CASK_OPTS="--appdir=/Applications --caskroom=/usr/local/Caskroom"
# Make sure using latest Homebrew
brew update
# Update already-installed formula
brew upgrade
# Add Repository
brew tap homebrew/versions
brew tap phinze/homebrew-cask
brew tap homebrew/binary
# Packages for brew-cask
brew install brew-cask
# Packages for development
brew install git
brew install vim
brew install curl
brew install wget
brew install tree
brew install rbenv
brew install ruby-build
brew install mysql
brew install jq
brew install fabric
# .dmg from brew-cask
brew cask install iterm2
brew cask install google-chrome
brew cask install virtualbox
brew cask install vagrant
brew cask install kobito
brew cask install dropbox
brew cask install firefox
brew cask install google-japanese-ime
brew cask install appcleaner
brew cask install intellij-idea
brew cask install freemind
# Remove outdated versions
brew cleanup
brew cask cleanup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment