I'm using Python 2.7
with pygame-1.9.2pre.win32-py2.7.exe
from http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame
I've run this script:
import pygame
print 'PyGame Version: %s ' % pygame.__version__
to see if my module was installed correctly and I got:
PyGame Version: 1.9.2pre
As far as I know, it means that pygame is working correctly. In Python IDLE i try to run interactively:
import pygame
pygame.init()
# Set the height and width of the screen
size=[700,500]
screen=pygame.display.set_mode(size)
pygame.display.set_caption("My Game")
And it works fine. But whenever I try to run this as a script I get:
Traceback (most recent call last):
File "D:\Computing\Workspaces\Python\test\pygame.py", line 5, in <module>
import pygame
File "D:\Computing\Workspaces\Python\test\pygame.py", line 13, in <module>
pygame.init()
AttributeError: 'module' object has no attribute 'init'
On Eclipse or Running in IDLE either. What this could be?