I want to put a stop to this damn problem once and for all. In the 'Python Programming for the absolute beginner' book, it asks you to download its special version of livewires and pygame along with python 3.1.1. However, using the code
from livewires import games
input("Press enter . . .")
I get this error when ran.
Traceback (most recent call last):
File "C:\Python31\TEST", line 1, in , <module>
from livewires import games, colors
File "C:\Python34\lib\site-packages\livewires\games.py", line 57, in <module>
import pygame, pygame.image, pygame.nixer, pygame.font, pygame.transform
ImportError: No module named 'pygame.image'
I've been trying to solve this for ages! Something i noticed is the line:
File "C:\Python34\lib\site-packages\livewires\games.py", line 57, in <module>
and how it says 'Python34' not 'Python31' like the first line with a path. Is it going to the wrong place? What is wrong with my damn python? Please help and thanks in advance.