After several trials for install pygame in pypy3, I did it with the bitbucket version, cloning with mercurial and installing this way:
"pypypath"/bin/pypy3 setup.py
However, when I'll make the import, the following error appears:
Traceback (most recent call last):
File "/home/rafael/PycharmProjects/pygame-teste/__init__.py", line 3, in <module>
import pygame
File "/opt/pypy3-2.4.0-linux64/site-packages/pygame/__init__.py", line 133, in <module>
from pygame.base import *
ImportError: No module named pygame.base
This error also happened in python3 with Debian Wheezy, but worked when I was using pycharm.
Now, I'm using Debian Jessie and it imports pygame successfully in python3 from prompt, but pypy has this error now. (And don't import in pycharm too).
Any idea?