Re: [Numpy-discussion] Instructions on building from source

2008-07-24 Thread Eric Firing
Andrew Straw wrote: Just for reference, you can find the build dependencies of any Debian source package by looking at its .dsc file. For numpy, that can be found at http://packages.debian.org/sid/python-numpy Currently (version 1.1.0, debian version 1:1.1.0-3), that list is:

Re: [Numpy-discussion] Instructions on building from source

2008-07-24 Thread Robert Kern
On Thu, Jul 24, 2008 at 02:15, Eric Firing [EMAIL PROTECTED] wrote: Andrew Straw wrote: Just for reference, you can find the build dependencies of any Debian source package by looking at its .dsc file. For numpy, that can be found at http://packages.debian.org/sid/python-numpy Currently

[Numpy-discussion] import numpy fails with multiarray .so: undefined symbol: PyUnicodeUCS2_FromUnicode

2008-07-24 Thread G
Hello, I have installed the svn version of numpy. I have deleted all previous versions of and files related to numpy prior to installing. I also have tried reinstalling python from source. Regardless, when I try import numpy, I get the following: Python 2.5.2 (r252:60911, Jul 23 2008, 23:54:29)

Re: [Numpy-discussion] import numpy fails with multiarray.so: undefined symbol: PyUnicodeUCS2_FromUnicode

2008-07-24 Thread Robert Kern
On Thu, Jul 24, 2008 at 02:21, G [EMAIL PROTECTED] wrote: Hello, I have installed the svn version of numpy. I have deleted all previous versions of and files related to numpy prior to installing. I also have tried reinstalling python from source. Regardless, when I try import numpy, I get

Re: [Numpy-discussion] f2py - a recap

2008-07-24 Thread Pearu Peterson
Hi, Few months ago I joined a group of system biologist and I have been busy with new projects (mostly C++ based). So I haven't had a chance to work on f2py. However, I am still around to fix f2py bugs and maintain/support numpy.f2py (as long as current numpy maintainers allow it..) -- as a

Re: [Numpy-discussion] import numpy fails with multiarray .so: undefined symbol: PyUnicodeUCS2_FromUnico de

2008-07-24 Thread G
Robert Kern robert.kern at gmail.com writes: Are you sure you are getting the same python executable when running the setup.py as you are when you build numpy? I believe so: sudo which python /usr/local/bin/python which python /usr/local/bin/python which ipython /usr/local/bin/ipython

Re: [Numpy-discussion] Schedule for 1.1.1

2008-07-24 Thread David Cournapeau
On Tue, Jul 15, 2008 at 2:01 PM, Charles R Harris [EMAIL PROTECTED] wrote: On Mon, Jul 14, 2008 at 10:50 PM, Gael Varoquaux [EMAIL PROTECTED] wrote: On Sun, Jul 13, 2008 at 01:49:18AM -0700, Jarrod Millman wrote: The NumPy 1.1.1 release date (7/31/08) is rapidly approaching and we need

Re: [Numpy-discussion] Instructions on building from source

2008-07-24 Thread Andrew Straw
Eric Firing wrote: Andrew Straw wrote: Just for reference, you can find the build dependencies of any Debian source package by looking at its .dsc file. For numpy, that can be found at http://packages.debian.org/sid/python-numpy Currently (version 1.1.0, debian version 1:1.1.0-3), that

Re: [Numpy-discussion] Instructions on building from source

2008-07-24 Thread David Cournapeau
Andrew Straw wrote: The way it's supposed to work, as far as I understand it, is that atlas is not required at build time but when installed later automatically speeds up the blas routines. (Upon installation of libatlas3gf-sse2, libblas.so.3gf is pointed to

Re: [Numpy-discussion] import numpy fails with multiarray.so: undefined symbol: PyUnicodeUCS2_FromUnicode

2008-07-24 Thread Travis E. Oliphant
G wrote: Hello, I have installed the svn version of numpy. I have deleted all previous versions of and files related to numpy prior to installing. I also have tried reinstalling python from source. Regardless, when I try import numpy, I get the following: Python 2.5.2 (r252:60911, Jul

[Numpy-discussion] Documenting `zipf`

2008-07-24 Thread Stéfan van der Walt
Hi, Does anybody know how Zipf's law or how Zipfian distributions work, and how they relate to NumPy's `np.random.zipf`? I'm afraid I can't make head or tail of these results: In [106]: np.random.zipf(2, size=(10)) Out[106]: array([ 1, 1, 1, 29, 1, 1, 1, 1, 1, 2]) (8x1, 1x2, 1x29) In

Re: [Numpy-discussion] import numpy fails with multiarray.so: undefined symbol: PyUnicodeUCS2_FromUnicode

2008-07-24 Thread Lisandro Dalcin
Did you build Python from sources in such a way that the Python library is a shared one? I mean, Do you have the file /usr/local/lib/libpython2.5.so ?? On Thu, Jul 24, 2008 at 4:21 AM, G [EMAIL PROTECTED] wrote: Hello, I have installed the svn version of numpy. I have deleted all previous

[Numpy-discussion] 1.1.1rc2 tagged

2008-07-24 Thread Jarrod Millman
Hello, The 1.1.1rc2 is now available: http://svn.scipy.org/svn/numpy/tags/1.1.1rc2 The source tarball is here: http://cirl.berkeley.edu/numpy/numpy-1.1.1rc2.tar.gz Here is the universal Mac binary: http://cirl.berkeley.edu/numpy/numpy-1.1.1rc2-py2.5-macosx10.5.dmg David Cournapeau will be

Re: [Numpy-discussion] Documenting `zipf`

2008-07-24 Thread Robert Kern
On Thu, Jul 24, 2008 at 10:15, Stéfan van der Walt [EMAIL PROTECTED] wrote: Hi, Does anybody know how Zipf's law or how Zipfian distributions work, and how they relate to NumPy's `np.random.zipf`? I'm afraid I can't make head or tail of these results: In [106]: np.random.zipf(2,