#!/usr/bin/env python
import sys

sys.stderr.write('''
%s is not installed.

Possible missing packages: libplplot-dev
''' % sys.argv[0])
sys.exit(1)
