Using SciPy in application

2013-04-24 Thread Roozbeh
Hi all, I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this problem? Thanks in advance for your help -- http://mail.python.org/mailman/listinfo/python-list

Re: Using SciPy in application

2013-04-24 Thread Oscar Benjamin
On 24 April 2013 10:13, Roozbeh roozbe...@gmail.com wrote: I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this problem? They cannot use the function from

Re: Using SciPy in application

2013-04-24 Thread Robert Kern
On 2013-04-24 16:34, Oscar Benjamin wrote: On 24 April 2013 10:13, Roozbeh roozbe...@gmail.com wrote: I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this

Re: Using SciPy in application

2013-04-24 Thread Roozbeh
On Wednesday, April 24, 2013 11:13:45 AM UTC+2, Roozbeh wrote: Hi all, I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this problem? Thanks in advance for your

Re: Using SciPy in application

2013-04-24 Thread Roozbeh
On Wednesday, April 24, 2013 11:13:45 AM UTC+2, Roozbeh wrote: Hi all, I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this problem? Thanks in advance for your

Re: Using SciPy in application

2013-04-24 Thread Roozbeh
On Wednesday, April 24, 2013 11:13:45 AM UTC+2, Roozbeh wrote: Hi all, I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this problem? Thanks in advance for your

Re: Using SciPy in application

2013-04-24 Thread Robert Kern
On 2013-04-24 17:04, Roozbeh wrote: On Wednesday, April 24, 2013 11:13:45 AM UTC+2, Roozbeh wrote: Hi all, I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this

Re: Using SciPy in application

2013-04-24 Thread Alex van der Spek
On Wed, 24 Apr 2013 04:34:44 -0700, Roozbeh wrote: The scipy interpolation routines (splev, splrep, etc.) are on netlib: http://www.netlib.org/dierckx/ This gives you FORTRAN source codes which you will have to compile yourself to either a DLL or an SO. Call them from python using ctypes. I

Re: Using SciPy in application

2013-04-24 Thread Miki Tebeka
I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. You can pack you application with py2exe, pyinstaller ... and then they won't even need to install Python. Another option (which is

Re: Using SciPy in application

2013-04-24 Thread Roozbeh
On Wednesday, April 24, 2013 3:52:50 PM UTC+2, Miki Tebeka wrote: I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. You can pack you application with py2exe, pyinstaller ... and

Re: Using SciPy in application

2013-04-24 Thread Maarten
On Wednesday, April 24, 2013 1:40:14 PM UTC+2, Robert Kern wrote: On 2013-04-24 17:04, Roozbeh wrote: On Wednesday, April 24, 2013 11:13:45 AM UTC+2, Roozbeh wrote: Hi all, I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the

Re: Using SciPy in application

2013-04-24 Thread Grant Edwards
On 2013-04-24, Roozbeh roozbe...@gmail.com wrote: I want to use spline interpolation function from SciPy in an application and at the same time, I don't want the end user to have to install SciPy separately. Is there a way around this problem? You could bundle you app along with python and