I am writing a python script which automatically sets up a django web server environment.
In the script, I am installing a new modules using
for package in packages:
os.system("%s %s" % ('easy_install', package))
This works fine. My only issue is that I want to use these newly installed packages in the same script using
package = __import__(package)
This does not work though, and I receive an ImportError: No module named reportlab (for example)
If I run the script again, the script works as I assume all of the newly installed packages are on the system path. I was hoping there is a way that I can import the new modules without restarting the script though.
I tried reload(sys) but it didn't help me. I can hack it by manually appending to sys.path or by starting a new python script using os.system(), but I would prefer a cleaner solution.