hello everybody, im coding a game with opengl,pyggel,python,pygame etc
and it runs smoothly without any problems =)
www.youtube.com/watch?v=JlDuje39S_8 - My python 3d game projekt <--- sorry if outside links isnt allowed =(
But the thing is that when im compiling it with py2exe using this as setup.py
from distutils.core import setup
import py2exe
setup(windows=['game.pyw'],
options={
"py2exe": {
"includes": ["ctypes", "logging"],
}
}
)
and after i compiled it and finish with everything and run it i get this error
Traceback (most recent call last):
File "game.pyw", line 2, in <module>
File "pyggel\__init__.pyc", line 7, in <module>
File "pyggel\include.pyc", line 12, in <module>
File "OpenGL\GL\__init__.pyc", line 2, in <module>
File "OpenGL\raw\GL\__init__.pyc", line 6, in <module>
File "OpenGL\raw\GL\constants.pyc", line 7, in <module>
File "OpenGL\platform\__init__.pyc", line 36, in <module>
File "OpenGL\platform\__init__.pyc", line 27, in _load
File "OpenGL\plugins.pyc", line 14, in load
File "OpenGL\plugins.pyc", line 28, in importByName
ImportError: No module named win32
I tried downloading and installing pywwin32 but same prob,what should i do ?