While your GDAL was compiled for a newer numpy, probably in MacPorts, it's 
probably not overriding the numpy in the system (the older one I assume).

A standard numpy install uses the normal python path loading order, and in 
Apple's infinite wisdom (to keep an incompatible version from overriding what's 
in the system, I guess) the user site-packages 
(/Library/Python/x.y/site-packages, including any .pth files in there) is 
searched *after* system packages.  You need a custom .pth file that prepends 
(insert) the numpy path to the sys.path (I do that for my numpy package).

On Oct 18, 2011, at 10:50 AM, Puneet Kishor wrote:

> 
> On Oct 18, 2011, at 8:28 AM, William Kyngesburye wrote:
> 
>> I don't think GDALFPolygonize is the problem, that's just a test for a new 
>> feature in development GDAL and it's OK if it fails.  After that should be 
>> the "checking for GDAL Python bindings" info.
>> ..
> 
> 
> 
> Gah! Dunno what I did, but now GDAL Python bindings are discovered, but seems 
> like I have the wrong version of something.
> 
> RASTER: Raster support requested
> checking for GDAL >= 1.6.0... found
> checking for GDALFPolygonize in -lgdal... no
> checking for GDAL Python bindings... found
> checking for NumPy array support in GDAL Python bindings... RuntimeError: 
> module compiled against API version 6 but this version of numpy is 4
> not found
> configure: error: GDAL Python bindings with NumPy array support required by 
> raster2pgsql.py loader
> 
> 
> 
> 
> 
> I am not sure above what is compiled against API version 6 of what and what 
> is the "this numpy" with version 4. Fwiw
> 
> punkish@mumbai ~$/opt/local/bin/python2.7
> Python 2.7.2 (default, Sep 13 2011, 14:07:58) 
> [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin
> Type "help", "copyright", "credits" or "license" for more information.
>>>> import numpy as np
>>>> np.__version__
> '1.6.1'
>>>> 
> 
> 
> 
> --
> Puneet Kishor
> 
> _______________________________________________
> postgis-users mailing list
> postgis-users@postgis.refractions.net
> http://postgis.refractions.net/mailman/listinfo/postgis-users

-----
William Kyngesburye <kyngchaos*at*kyngchaos*dot*com>
http://www.kyngchaos.com/

"This is a question about the past, is it? ... How can I tell that the past 
isn't a fiction designed to account for the discrepancy between my immediate 
physical sensations and my state of mind?"

- The Ruler of the Universe


_______________________________________________
postgis-users mailing list
postgis-users@postgis.refractions.net
http://postgis.refractions.net/mailman/listinfo/postgis-users

Reply via email to