easy_install python extension allows to install python eggs from console like:
easy_install py2app
But is it possible to access easy_install functionality inside a python script? I means, without calling os.system( “easy_install py2app” ) but instead importing easy_install as a python module and using it’s native methods?
When I look at the setup tools source, it looks like you can try the following.