Main application software
On Mac OSX, you first need to install XCode Command Line Tools: xcode-select --install
.
You then want to install homebrew
:
/usr/bin/ruby -e \
"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Homebrew then allows you to install R, R Studio, Julia, Python, PostgreSQL that we’ll use during the class:
- R. Install using homebrew:
brew install r
. - R Studio. Install using homebrew:
brew cask install rstudio
. - Julia. Install using homebrew:
brew cask install julia
. - Python. Install using homebrew:
brew install python
. Install the package manager for python:sudo easy_install pip
. Verify which version has been installed:python --version
. - Anaconda. Install using homebrew:
brew cask install anaconda
- PostgreSQL. Install using homebrew:
brew install postgresql
.