I have installed pygame and livewires but am getting the following error with the following short program that I got from my python book.
AttributeError: 'module' object has no attribute 'init'
# New Graphics Window
# Demonstrates creating a graphics window
from livewires import games
games.init(screen_width = 640, screen_height = 480, fps = 50)
games.Screen.mainloop()