Skip to content

Instantly share code, notes, and snippets.

@rlopc
Forked from t-io/osx_install.sh
Last active August 1, 2016 01:32
Show Gist options
  • Save rlopc/f241c5c1797bf34d15a3 to your computer and use it in GitHub Desktop.
Save rlopc/f241c5c1797bf34d15a3 to your computer and use it in GitHub Desktop.
Install most of my Apps with homebrew & cask
#!/usr/bin/env bash
# install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install brew taps
brew tap caskroom/cask
#brew tap caskroom/versions
brew tap homebrew/science
# install packages by homebrew
brew install gcc
brew install Caskroom/cask/xquartz
brew install R
brew install python
brew install python3
#brew install go
brew install node
brew cask install java # java 8
brew cask install java7
# brew install wget
# brew install curl
# brew install ffmpeg
# brew install eigen
# apps
#brew cask install --appdir="/Applications" dropbox
#brew cask install --appdir="~/Applications" google-drive
#brew cask install --appdir="/Applications" evernote
#brew cask install --appdir="/Applications" vlc
#brew cask install --appdir="/Applications" github
#brew cask install --appdir="/Applications" heroku-toolbelt
#brew cask install --appdir="/Applications" sublime-text3
#brew cask install --appdir="/Applications" pycharm-pro
#brew cask install --appdir="/Applications" macvim
#brew cask install --appdir="/Applications" virtualbox
#brew cask install --appdir="/Applications" sourcetree
# cleanup
brew cleanup --force
rm -f -r /Library/Caches/Homebrew/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment