> > Hi > I'd like to confirm the problem with opengl discussed in a previous > thread. > Executable created from > > import OpenGL.GL > print "hello" > > gives error > Traceback (most recent call last): > File "<string>", line 3, in ? > File "E:\pyinstaller\iu.py", line 334, in importHook > ImportError: No module named encodings > > It does not depend on -F/-D choice in Makespec.py. > This is on winxp, created with python 2.4, PyOpenGL 2.0.1.09, > pyinstaller from svn (today). > The error message appears on a machine with no python 2.4 installed. > (there actually is python 2.5, but hopefully it doesn't matter). If I > install python 2.4 there (vanilla, no PyOpenGL installation required) > the error disappears. > > Best regards > P.
I resolved a similar question looking at any .pyc files in Python directory (files like os.pyc, etc, you can see which ones change by observing the access data) and copying those files in my application directory. I think this wasn't the best way to resolve it, but it is the only useful I found. Bye. -- Marco Bonifazi --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [EMAIL PROTECTED] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
