views:

16

answers:

1

I m new to this and i need to freeze python3.1 scripts so that it can be run in other machines which does'nt have python3.1. CXFREEZE is the one which supports python 3.1 as far as i know. But i could not find any thread saying that freeze is successful for python3.x.

So can anybody tell me will it be done with cxfreeze or i have to choose something else to get my app ready to execute in other machines.

A: 

It sounds like you should be able to using cx_Freeze from SVN trunk according to this: http://www.mail-archive.com/[email protected]/msg00522.html

Not many other executable builders for Python support 3.0 yet. cx_Freeze sounds like your best shot.

excid3