开发者

compilation error. AttributeError: 'module' object has no attribute 'init'

开发者 https://www.devze.com 2023-01-23 10:01 出处:网络
Here is my small program, import pygame pygame.init() Here is my compil开发者_如何学JAVAation command.

Here is my small program,

import pygame
pygame.init()

Here is my compil开发者_如何学JAVAation command.

python myprogram.py

Compilation error,

  File "game.py", line 1, in 
    import pygame
  File "/home/ubuntu/Documents/pygame.py", line 2, in 
    pygame.init()
AttributeError: 'module' object has no attribute 'init'

I have pygame installed in my ubuntu, It is installed in

/usr/lib/python2.6/dist-packages/pygame

I found tht from IDLE, If I execute both of this statements, It works fine.


Delete the "pygame.py" file in your Documents folder, it is shadowing the real pygame you've installed.

It looks like you first saved your small test program as "pygame.py", then renamed it to "game.py".


  1. Here is my compilation command:python myprogram.py but you have error in File "game.py", line 1, in oO

  2. I was have same problem and solve it by renaming of main .py file. He can't be the same as module i.e pygame


Rename pygame.py to another_name_as_pygame.py and this is your new Code:

import pygame
from pygame.locals import *
pygame.init()
0

精彩评论

暂无评论...
验证码 换一张
取 消