Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 961 Bytes

File metadata and controls

47 lines (27 loc) · 961 Bytes

Setup

Mac

  1. Install the Homebrew package manager from: http://brew.sh/

  2. In the terminal run the following command to update your package manager.

    brew update

  3. Install the "tree" command

    brew install tree

  4. Install git

    brew install git

  5. Install python, and python's package manager (called pip). For mac, pip is included in the python package in homebrew.

    brew install python
    

Ubuntu

  1. In the terminal run the following command to update your package manager.

    sudo apt-get update

  2. Install the "tree" command

    sudo apt-get install tree

  3. Install git

    sudo apt-get install git

  4. Install python, and python's package manager (called pip)

    sudo apt-get install python
    sudo apt-get install python-pip
    

Windows

Please see instructions to boot Ubuntu on Windows (windows.md). Once you've loaded and run Ubuntu, please follow the Ubuntu instructions above.