|
From: Mark H. <ski...@gm...> - 2009-01-02 22:49:06
|
On 3/01/2009 2:54 AM, JReed wrote: > I wrote a simple script and used py2exe to make a single file exe on my > WIndows XP laptop running ActivePython2.6. I then uninstalled python and > anything related, tested the script and it still runs fine. When I try > it on another computer without admin rights and without python > installed, it get an error message "This application has failed to start > because the application configuration is incorrect". If I install > ActivePython 2.6 it works fine, uninstall and I get this error. Is there > anyway to see what files this depends on that I may not have access to > ont he restricted account machine? It sounds to me like you aren't distributing the MS C Runtime assembly with your application. Installing ActivePython will have installed that assembly globally, allowing it to work without the assembly next to your executable. For more info, see almost every other mail to this mailing list in the last 2 months or so :) Cheers, Mark |