我的书中的程序有问题。我写的代码很简单:
from livewires import games
games.init(screen_width = 640, screen_height = 480, fps = 50)
games.screen.mainloop()
和错误:
Traceback (most recent call last):
File "/home/adrian/python_project/gra.py", line 3, in <module>
games.init(screen_width = 640, screen_height = 480, fps = 50)
AttributeError: 'module' object has no attribute 'init'
我通过这个命令安装了数据包(我使用的是 Ubuntu):
sudo apt-get install python-pygame
sudo python2.7 setup.py install (I downloaded LiveWires-2.1 and extracted it)
我能做些什么来运行这个程序?