I am getting much farther with my app now that I can actually run it as an .exe; and running under VS is a HUGE help. Currently, the app is dying on the following statement:<br><br>import os<br><br>When I run it in VS or from the ipy command prompt, "import os" seems to work fine, "dir(os)" yields a bunch of symbols, for instance.<br>
<br>When I run it as a compiled .exe, it runs up to that point, and dies with an exception "no module named os".<br><br>This seems like it must be some sort of path issue or similar. Where is the assembly for "os",<br>
and how do I ensure it gets found from my .exe - is there a specific env. variable, or the Windows %PATH% e.v., or something I haven't AddReference'd to????<br>Thanks,<br>Ken<br><br><br>