Re: Help needed to freeze a script.

2008-09-04 Thread LB
Did you try py2exe instead offreeze? On the page http://www.py2exe.org/index.cgi/WorkingWithVariousPackagesAndModules there is only one brief mention of numpy packaging troubles, suggesting that it might work better. I have used py2exe in the past without much trouble. Unfortunately, I'm

Re: Help needed to freeze a script.

2008-09-04 Thread Gabriel Genellina
En Thu, 04 Sep 2008 14:11:45 -0300, LB [EMAIL PROTECTED] escribi�: Do you know if py2exe executable embedding a lot of C extensions - like numpy and scipy - can ben executed on another computer, with a different architecture (64bits vs 32 bits) and a different OS ? Forget it, Jake. --

Help needed to freeze a script.

2008-09-03 Thread LB
Hi, I would like to freeze a numpy based script in order to have an application which could run without having to install numpy and cie. Indeed, I'm not root on the targeted computer and I can't easily make a complete install of numpy and scipy. So I decided to test the freeze.py tool shipped

Re: Help needed to freeze a script.

2008-09-03 Thread Michael Palmer
On Sep 3, 1:30 pm, LB [EMAIL PROTECTED] wrote: Hi, I would like to freeze a numpy based script in order to have an application which could run without having to install numpy and cie. Indeed, I'm not root on the targeted computer and I can't easily make a complete install of numpy and