Installation of pygame with Anaconda

The easiest way to install Python using conda is:

conda install -c https://conda.binstar.org/krisvanneste pygame

Edit (03/2016):

It seems like the package is unavailable, but you can use this instead:

conda install -c https://conda.anaconda.org/tlatorre python

Edit (01/2017)

The command has changed, now you can use:

conda install -c tlatorre pygame=1.9.2

Edit (07/2018)

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

Leave a Comment