I have Anaconda 1.6.2, which uses Python 2.7.5, installed on a Windows 7 64-bit system.
I need to install Pygame 1.9.1
The easiest way to install Python using conda is:
conda install -c https://conda.binstar.org/krisvanneste pygame
It seems like the package is unavailable, but you can use this instead:
conda install -c https://conda.anaconda.org/tlatorre python
The command has changed, now you can use:
conda install -c tlatorre pygame=1.9.2
tlatorre's repo is still valid but a little bit outdated, you can use cogsci repo if you want the latest version:
conda install -c cogsci pygame