0

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

Jack_The_Ripper
  • 673
  • 2
  • 6
  • 24

1 Answers1

1

py2exe and pypy are incompatible. It's possible to write an equivalent of py2exe for pypy, but some work has to be done.

fijal
  • 3,190
  • 18
  • 21