Jack_The_Ripper
Jack_The_Ripper

Reputation: 703

py2exe with Pypy

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

Answers (1)

fijal
fijal

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

Related Questions