On my ubuntu box I have python2.6 and python 3.1 installed. I did some work with pygame / python2.6, and now I want to play with python3.1 / pygame. However, in idle (using python3.1) when I import pygame, I get errors.
>>> import pygame
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pygame
ImportError: No module named pygame
So, what is the proper way to install pygame for multiple python installs?