#!/bin/bash
which ipython > /dev/null 2>&1
if [ "$?" == "0" ]; then
	DATAGREPPER_CONFIG=../development.cfg ipython
else
	DATAGREPPER_CONFIG=../development.cfg python
fi
