<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div class="im">
<br>My intent though is really not to produce a commercial product. My 
question relates to difficulty my partner and I have to exchanging py 
programs w/o him stumbling. I send him a py program written using 
Windows Python 2.5. He has the same. I&#39;ve executed it IDLE and it works 
fine. He executes, and it squawks per my post here on finding a version 
#, showing his output. We need to make sure we are on the same playing 
ground with numpy and scipy.</div><br></blockquote><div><br>Why not try bundling your .py modules in a zip file and then importing the run modules from this zip file? In that way, the package integrity is ensured. You&#39;d just have to ship your collaborator the zip archive and also make sure that both of you are running the same versions of numpy, scipy, python and other packages. <br>
<br><a href="http://docs.python.org/library/zipimport.html">http://docs.python.org/library/zipimport.html</a><br><br><a href="http://www.doughellmann.com/PyMOTW/zipimport/">http://www.doughellmann.com/PyMOTW/zipimport/</a><br>
<br>Regards,<br>Iyer </div></div>