Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

A quick start guide for installing from binaries or compiling from source.

Quick Start With Binaries

...

  1. Download the MADlib binary
    1. Pivotal Greenplum Database: Download the .gppkg binary from Pivotal Network

  2. Install the package at the OS level.
    • Postgres:
      • on OSX double click the installer package
      • on Redhat / CentOS run the following as root: 

Code Block
languagebash
yum install <madlib_package> --nogpgcheck
  • Pivotal Greenplum Database:
    • on Redhat / CentOS run the following as gpadmin

      Code Block
      languagebash
      gppkg install <madlib_package>

...

Ensure that the environment is setup for your database deployment and that the database is up and running.

  • Ensure that psql, postgres, and pgconfig are in your path

    which psql which postgres which pgconfig

  • Ensure that the database is started and running

    psql –c 'select version()'

...