I\'m trying to create a generic python script for starting up a python app and I would like to install any dependent python modules if they are missing from the target system.
import os string = "python setup.py install" os.system(string)