Virtually nothing manages to install either through pip or other supposedly convenient ways.
It is worth virtualenv in Ubuntu 14.04, created in it an environment on Python 3.4.
Now it's been 2 hours trying to put pygame. From the heap of methods, it is more or less obtained with
sudo apt-get install mercurial python3-pip libfreetype6-dev sudo apt-get build-dep python-pygame sudo pip3 install hg+http://bitbucket.org/pygame/pygame To check, I created a Python file with the line from pygame import * , when I launch it from a virtual environment, the `ImportError: No module named 'pygame' swears. If you run not from the environment, it runs without errors.
What am I doing wrong?