I'm using Pygame and livewire to practice some basic graphics manipulation.
I run into a little error:
RESTART: C:\Users\Timothy\AppData\Local\Programs\Python\Python35-32\Scripts\NewWindow.py
Traceback (most recent call last):
File "C:\Users\Timothy\AppData\Local\Programs\Python\Python35-32\Scripts\NewWindow.py", line 4, in <module>
from livewires import games
ImportError: cannot import name 'games'
My code is merely:
from livewires import games
games.init(screen_width = 640, screen_height = 480, fps = 50)
games.screen.mainloop()
I currently have pygames and livewire in my Lib folder under python.