This is probably more a Python itself question than a wxPython one…anyway, here it is:
What’s the most convenient way to automatically get a list of all the modules/libraries that need to be installed on a computer in order for a wxPython application to work? I ask because I might try to have a (Mac-using) friend install the various libraries he’d need to try out a (Windows tested) program I’ll send him, but the list is kind of long and I’d like a definitive and automatically-generated list.
I could just laboriously go through and make the list myself, but I had a feeling there is probably a bit of code or a tool that would do this. I just really want output as stone simple as output like:
matplotlib 1.1
dateutil
Python 2.7
my_custom_module.py
etc…
py2exe does this implicitly, in that it finds everything needed to bundle the .exe, but doesn’t output a list for you. The point is, I want to just indicate one file, my main .py file, and then have it generate the list automatically.
Suggestions?
Thanks,
Che