#!/usr/bin/env python
# -*- coding: utf-8 -*-

import sys

try:
    import f2_probe_detector

except ImportError:
    print(
        'Please, check if you have "f2_probe_detector" installed or if you are'
        'within the Virtual Environment where it was installed.\n\n'
        'Leaving now.')
    sys.exit()


if __name__ == '__main__':
    f2_probe_detector.main()