Mercurial > hg > MakeItSo
view examples/hotinstall.py @ 253:668b0e1f5ce0
introduce failing test: the first step to passing
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 13 May 2017 18:36:01 -0700 |
parents | 388b4bb3516c |
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)