My friend does not have Python or the libraries needed installed on his machine to run a program I have written. Is there a simple way to export my project (currently sitting in pydev on my x64 Windows 7 machine) so that he could run it on his machine? (He has OSX, but he could find Unix or Windows if needed.) My program uses several modules, and depends on networkx, wx, and matplotlib.
Feel free to move this to programming if overflow isn’t appropriate.
Thanks!
You could use py2exe (Windows), cx_Freeze (should work on any platform that Python itself works on) or py2app (Mac OS X).