How do I install Pygame in virtualenv?
I suggest you have pip in your virualenv, its useful.
Note: must have pygame's dependencies installed, you can find out what they are and install them with:
sudo apt-get build-dep python-pygame
Then try this:
rm -rf ~/.virtualenvs/pywork3 #clean what you have there
mkdir -p ~/.virtualenvs/pywork3
virtualenv --no-site-packages --distribute -p /usr/bin/python3.3 ~/.virtualenvs/pywork3
. ~/.virtualenvs/pywork3/bin/activate
pip install pygame