Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Py2Exe - "The application configuration is incorrect."

Tags:

I've compiled my Python program using Py2Exe, and on the client's computer we've satisfied all the dependencies using dependency walker, but we still get "The application configuration is incorrect. Reinstalling the application may correct the problem." I'm also using wxPython.

The client does not have administrator access.

Any ideas?

like image 480
Hach-Que Avatar asked Jan 13 '09 23:01

Hach-Que


2 Answers

Give GUI2exe a shot; it's developed by Andrea Gavana who's big in the wxpython community and wraps a bunch of the freezers, including py2exe. It's likely a dll issue, try searching the wxpython list archive. This thread may be of use.

like image 101
DrBloodmoney Avatar answered Oct 05 '22 12:10

DrBloodmoney


I've ran into this myself and my random Googling has pointed me to several people saying to downgrade python 2.6 to 2.5, which worked for me.

like image 42
Dustin Wyatt Avatar answered Oct 05 '22 13:10

Dustin Wyatt