#!/usr/bin/env python
import sys

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

                             Please ensure CUDA is installed correctly.
                             Rerun Madagascar installation after it has been fixed.
                             
''' % sys.argv[0])
sys.exit(1)
