I'm trying to use pypy compiler to run my python code but the sys.path for pypy is different from normal python compiler so when I tried to import default modules such as
import pygame
it fails in pypy, stating that the module is not found, while it works correctly with the normal python command. Any help is greatly appreciated.