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

import sys

try:
    import f2_probe_detector

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


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