Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

MacOS Setup

Anand Venkatanarayanan edited this page Aug 22, 2018 · 1 revision

The following instructions worked for a brand new Mac.

  1. Install Home Brew
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  2. Install Python environment manager for system.
    brew install pyenv

  3. Install Python Versions (both Python 2 and 3)
    pyenv install 2.7.14
    pyenv install 3.6.4

  4. Install Pip and Virtual Environment.
    sudo easy_install pip
    sudo pip install virtualenv

  5. Redis is used as a cache server
    brew install redis
    brew services start redis

  6. Install Postgress App

  7. Delete the default PGSQL 10 database and install a 9.6 database and initialize.

Clone this wiki locally