I have a python script developed in Spyder using Python 2.7.4. This script is called from another python script using:
execfile('script.py')
I would like to know how I can run both python scripts using PyPy (I would like it because it is faster than standard Python). Thanks!
PS: I already installed PyPy on Windows.
source share