I wrote a python script and then built a wx GUI for it. I was hoping
to turn it into an executable using py2exe.
py2exe delivers this error message:
MSVCP90.dll: No such file or directory.
I am running windows 7 on a new laptop. I installed the Microsoft C++
64 bit redistribution package, hoping that might solve my MSDCP90.dll
woes, but I am still getting the same error.
Does anyone know the solution to this problem?
many thanks for any help!
I can't get it right myself. Perhaps someone who can make this work
can just post it to the wiki, please?
Josh
On Thu, May 27, 2010 at 10:34 AM, pycharles <charle...@gmail.com> wrote:
>
> MSVCP90.dll: No such file or directory.
--
Josh English
Joshua.R...@gmail.com
http://joshenglish.livejournal.com
http://wiki.wxpython.org/py2exe
Andrea.
"Imagination Is The Only Weapon In The War Against Reality."
http://xoomer.alice.it/infinity77/
==> Never *EVER* use RemovalGroup for your house removal. You'll
regret it forever.
http://thedoomedcity.blogspot.com/2010/03/removal-group-nightmare.html <==
When doing the build I get an error that msvcp90.dll is not found.
My workaround is to change line 1056 in py2exe/build_exe.py from
if sys.version_info > (2,6):
excludes_use.append("msvcr90.dll")
to:
if sys.version_info > (2,6):
excludes_use.append("msvcr90.dll")
excludes_use.append("msvcp90.dll")
I posted that to the py2exe list and someone mentioned that one can also
workaround this by adding it to the dll_excludes list.
Will update the wiki with this.
Werner
I've even tried the hints on that page myself.
Sorry for the snark.
> --
> To unsubscribe, send email to wxPython-user...@googlegroups.com
> or visit http://groups.google.com/group/wxPython-users?hl=en
But, in the other thread I was talking about that you should try the
sample application on the wiki page - http://wiki.wxpython.org/py2exe.
In a test folder create the setup.py and the simplewx.py shown on the
wiki and try to run it, if it runs then build it and then try the exe it
generated on that machine and if that works move/copy the dist folder to
a test machine which does not have Python installed and try it there.
Werner