From: Charles R H. <cha...@gm...> - 2006-10-19 20:39:58
|
On 10/19/06, Tommy Grav <tg...@ma...> wrote: > > I am on a Mac OS X and are trying to install numpy/scipy/matplotlib > > ActivePython 2.4.3 Build 11 (ActiveState Software Inc.) based on > Python 2.4.3 (#1, Apr 3 2006, 18:07:18) > [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin > Type "help", "copyright", "credits" or "license" for more information. > >>> import numpy > >>> numpy.__version__ > '1.1.2881' > >>> import scipy > >>> scipy.__version__ > '0.5.0.2095' > >>> import pylab > RuntimeError: module compiled against version 1000002 of C-API but this > version of numpy is 1000000 > You need a later version of numpy. The latest is 1000006 so you will probably need to also recompile both matplotlib and scipy against numpy latest. This is a recent check that Travis put in to track C-API changes. If you don't compile your own I don't know what you can do except wait. Chuck |