简体   繁体   中英

i keep getting the error 'module' object has no attribute 'init'

Especially when i run it from an external python file and just run it using IDLE or Pycharm..Please Help...but at times it works with in the interactive shell and then something happens and it starts its problems ....I simply typed

import pygame
x = pygame.init()
print(x)

C:\\Python33\\python.exe C:/Users/Home/Desktop/pygame.py Traceback (most recent call last): File "C:/Users/Home/Desktop/pygame.py", line 1, in import pygame File "C:\\Users\\Home\\Desktop\\pygame.py", line 2, in x = pygame.init() AttributeError: 'module' object has no attribute 'init'

Process finished with exit code 1.

The problem is that you named your file pygame.py .

If you run it and you want to import pygame , it will import your file C:\\Users\\Home\\Desktop\\pygame.py and not the installed pygame module.

So just use another filename (and delete C:\\Users\\Home\\Desktop\\pygame.py and any other leftovers).

pygame.init() initializes the pygame module, you don't assign it as a variable.

import pygame
pygame.init()

And that's it.

edit: As sloth mentioned: you also don't name your python projects the same name as modules, especially if you plan on importing them.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM