Reputation: 1
My Python version is 2.7 and whenever I try doing import pygame it shows the following error message:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pygame
File "C:\Python27\lib\site-packages\pygame\__init__.py", line 95, in <module>
from pygame.base import *
ImportError: DLL load failed: %1 is not a valid Win32 application.
Looks like it's some sorta' dll load failure but I just can't figure out what's wrong. Please help, thx
Upvotes: 0
Views: 129
Reputation:
I have had a similar problem before. What you have to do is download the 32-bit version of python, and make sure all python related downloads are 32-bit.
Upvotes: 1