Reputation: 703
I have been developing a python script called script.py . I wish to compile it using py2exe. However, I wish to make sure the the final script.exe is optimized with the pypy JIT compiler and hence faster.
P.S. I am new to both py2exe and pypy
Upvotes: 0
Views: 493
Reputation: 3190
py2exe and pypy are incompatible. It's possible to write an equivalent of py2exe for pypy, but some work has to be done.
Upvotes: 1