Re: [Numpy-discussion] Building numpy 1.0.3-2 on Linux 2.6.8 i686 (Debian 3.1)

2007-06-30 Thread Michael Hoffman
David Cournapeau wrote: > Michael Hoffman wrote: >> Hi. I have been trying to build NumPy on a 32-bit Linux box using python >> setup.py build. I received the following errors: >> [...] > > Which distribution are you building on ? Which Linux distribution? Debian 3.1. -- Michael Hoffman _

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Robert Kern
Mathew Yeates wrote: > Even more info! > I am using numpy gotten from svn on Wed or Thurs. Try to use numpy 1.0.3. There was a large set of changes to numpy.distutils after that release that have proven to be somewhat fragile. If 1.0.3 works, please enter a ticket into our Trac. Provide the inform

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Robert Kern
Mathew Yeates wrote: > More info: > I tried Chris' suggestion , i.e. export F77=gfortran > > And now I get > > Found executable /u/vento0/myeates/bin/gfortran > gnu: no Fortran 90 compiler found > Found executable /usr/bin/g77 Are you just trying to build numpy? Do you actually need a Fortran co

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Mathew Yeates
nfig >> compiling '_configtest.c': >> >> Robert Kern wrote: >> >> >>> Mathew Yeates wrote: >>> >>> >>> >>> >>>>> -bash-3.1$ python setup.py config_fc --fcompiler=gnu95 build

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Mathew Yeates
t;>>> >> Did you forget to attach a file? >> >> >> > > ___ > Numpy-discussion mailing list > Numpy-discussion@scipy.org > http://projects.scipy.org/mailman/listinfo/numpy-discussion > &g

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Mathew Yeates
No. My PC crashed. I swear I have a virus on this machine. Been that kinda weekend Not particularly illuminating but here it is: Running from numpy source directory. F2PY Version 2_3875 blas_opt_info: blas_mkl_info: libraries mkl,vml,guide not found in /u/vento0/myeates/lib NOT AVAILABLE atl

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Robert Kern
Christopher Hanley wrote: > I have found that setting my F77 environment variable to gfortran is > also sufficient. > > > setenv F77 gfortran > > python setup.py install That might work okay for building scipy and other packages that only actually have FORTRAN-77 code; however, I suspect that

Re: [Numpy-discussion] problem compiling v.1.0.3 on a Mac

2007-06-30 Thread Robert Kern
John Cartwright wrote: > Hello All, > > I'm having trouble compile on a Mac 10.4.10. It seems as if it's > not finding /usr/include: > > ... > from /Library/Frameworks/Python.framework/Versions/ > 2.4/include/python2.4/Python.h:81, > from _configtest.c:2:

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Robert Kern
Mathew Yeates wrote: >> -bash-3.1$ python setup.py config_fc --fcompiler=gnu95 build 2>&1 |tee out Did you forget to attach a file? -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as thoug

[Numpy-discussion] problem compiling v.1.0.3 on a Mac

2007-06-30 Thread John Cartwright
Hello All, I'm having trouble compile on a Mac 10.4.10. It seems as if it's not finding /usr/include: ... from /Library/Frameworks/Python.framework/Versions/ 2.4/include/python2.4/Python.h:81, from _configtest.c:2: /usr/include/stdarg.h:4:25: error: stdarg

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Mathew Yeates
Thanks for anyones help. I've been trying to figure this out for some time now. Stepping through distutils code is a bummer. -bash-3.1$ uname -a Linux mu.jpl.nasa.gov 2.6.17-5mdv #1 SMP Wed Sep 13 14:28:02 EDT 2006 x86_64 Dual-Core AMD Opteron(tm) Processor 2220 SE GNU/Linux -bash-3.1$ gfortran

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Christopher Hanley
I have found that setting my F77 environment variable to gfortran is also sufficient. > setenv F77 gfortran > python setup.py install Chris ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Robert Kern
Mathew Yeates wrote: > result > Found executable /usr/bin/g77 > gnu: no Fortran 90 compiler found > > Something is *broken*. Also, what version of numpy are you using? -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Robert Kern
Mathew Yeates wrote: > result > Found executable /usr/bin/g77 > gnu: no Fortran 90 compiler found > > Something is *broken*. Then please provide us with enough information to help you. What platform are you on? Exactly what command did you execute? Exactly what output did you get (please copy-and

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Mathew Yeates
result Found executable /usr/bin/g77 gnu: no Fortran 90 compiler found Something is *broken*. Robert Kern wrote: > Mathew Yeates wrote: > >> Does anyone know how to run >> python setup.py build >> and have gfortran used? It is in my path. >> > > python setup.py config_fc --fcompiler=gnu9

Re: [Numpy-discussion] bug in lexsort with two different dtypes?

2007-06-30 Thread Tom Denniston
thanks On 6/30/07, Charles R Harris <[EMAIL PROTECTED]> wrote: > > > On 6/26/07, Charles R Harris <[EMAIL PROTECTED]> wrote: > > > > > > > > > > On 6/26/07, Charles R Harris < [EMAIL PROTECTED]> wrote: > > > > > > > > > > > > On 6/26/07, Tom Denniston < > [EMAIL PROTECTED]> wrote: > > > > In [1]:

Re: [Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Robert Kern
Mathew Yeates wrote: > Does anyone know how to run > python setup.py build > and have gfortran used? It is in my path. python setup.py config_fc --fcompiler=gnu95 build -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own

[Numpy-discussion] how do I configure with gfortran

2007-06-30 Thread Mathew Yeates
Does anyone know how to run python setup.py build and have gfortran used? It is in my path. Mathew ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] bug in lexsort with two different dtypes?

2007-06-30 Thread Charles R Harris
On 6/26/07, Charles R Harris <[EMAIL PROTECTED]> wrote: On 6/26/07, Charles R Harris <[EMAIL PROTECTED]> wrote: > > > > On 6/26/07, Tom Denniston < [EMAIL PROTECTED]> wrote: > > > > In [1]: intArr1 = numpy.array([ 0, 1, 2,-2,-1, 5,-5,-5]) > > In [2]: intArr2 = numpy.array([1,1,1,2,2,2,3,4]) >

Re: [Numpy-discussion] Accelerate your Python code with parallel processing

2007-06-30 Thread Matthieu Brucher
2007/6/30, dmitrey <[EMAIL PROTECTED]>: I didn't find your python prices for Star-P. Or are there any chances for GPL/other free license for Python Star-P? I've found them, several k€. A link would have been great ( http://www.interactivesupercomputing.com/products/starpandpython.php) All

Re: [Numpy-discussion] Accelerate your Python code with parallel processing

2007-06-30 Thread dmitrey
I didn't find your python prices for Star-P. Or are there any chances for GPL/other free license for Python Star-P? Also, it would be interesting to see comparison numerical results of your product vs stackless python ( http://www.google.com.ua/search?q=stackless+python&ie=utf-8&oe=utf-8&aq=t&rl

Re: [Numpy-discussion] Building numpy 1.0.3-2 on Linux 2.6.8 i686 (Debian 3.1)

2007-06-30 Thread David Cournapeau
Michael Hoffman wrote: > Hi. I have been trying to build NumPy on a 32-bit Linux box using python > setup.py build. I received the following errors: > > """ > creating build/temp.linux-i686-2.5/numpy/linalg > compile options: '-DATLAS_WITHOUT_LAPACK -DATLAS_INFO="\"3.6.0\"" > -I/usr/include -Inum

[Numpy-discussion] Building numpy 1.0.3-2 on Linux 2.6.8 i686 (Debian 3.1)

2007-06-30 Thread Michael Hoffman
Hi. I have been trying to build NumPy on a 32-bit Linux box using python setup.py build. I received the following errors: """ creating build/temp.linux-i686-2.5/numpy/linalg compile options: '-DATLAS_WITHOUT_LAPACK -DATLAS_INFO="\"3.6.0\"" -I/usr/include -Inumpy/core/include -Ibuild/src.linux-i