I recently converted my wxpython script into an executable and ran them and I am getting a runtime error. The error is about the C++ runtime library. However this error doesn't seem to affect anything though. I can just click out of it and my program runs perfectly fine. Anyone know how to get rid of this error?
Edit: After looking more into it from this thread: http://forums.devshed.com/python-programming-11/py2exe-manifests-and-vc-redist-dlls-600827.html , it seems to be an error with the manifest file. I found the file myProgram.exe.manifest. where exactly am I supposed to put it? Also for the record I used PyInstaller to create the executable
Edit 2: Here is a link to the error: https://i.stack.imgur.com/AIWPC.jpg
Edit 3: I tired dependency walker and got that two files were missing GPSVC.DLL IESHIMS.DLL
Where can I get those and where do I put them?