view examples/hotinstall.py @ 204:388b4bb3516c

add hot install template
author Jeff Hammel <k0scist@gmail.com>
date Tue, 28 Oct 2014 13:47:43 -0700
parents
children
line wrap: on
line source

# python requirements
# (key, value) = (module, PyPI name)
requirements = [('boto', 'boto'),
                ('tempita', 'tempita')]
for module, package in requirements:
    try:
        globals()[module] = __import__(module)
    except ImportError:
        # install requirement and try again
        import subprocess
        subprocess.check_call(['pip', 'install', package])
        args = [sys.executable] + sys.argv
        os.execl(sys.executable, *args)