<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.16.3">
</HEAD>
<BODY>
I get the following runtime error when I import numpy: "module compiled against ABI version 2000000 but this version of numpy is 1000009" (see below).<BR>
<BR>
Python 2.7.1 (r271:86832, May 20 2011, 14:41:42)<BR>
[GCC 4.4.0 20090514 (Red Hat 4.4.0-6)] on linux2<BR>
Type "help", "copyright", "credits" or "license" for more information.<BR>
>>> import numpy as np<BR>
RuntimeError: module compiled against ABI version 2000000 but this version of numpy is 1000009<BR>
>>> np.version.version<BR>
'2.0.0.dev-3071eab'<BR>
>>>     <BR>
<BR>
This error doesn't seem to effect the operation of numpy  --- most tests in np.test('full') pass and most of the numpy functions I used regularly work --- but it causes the import of opencv to fail.<BR>
<BR>
>>> import cv<BR>
RuntimeError: module compiled against ABI version 2000000 but this version of numpy is 1000009<BR>
Traceback (most recent call last):<BR>
  File "<stdin>", line 1, in <module><BR>
ImportError: numpy.core.multiarray failed to import<BR>
>>> import numpy.core.multiarray<BR>
>>> numpy.core.multiarray.arange(5)<BR>
array([0, 1, 2, 3, 4])<BR>
>>>   <BR>
           <BR>
Thanks for any help you can give me with this.<BR>
<BR>
Kathy<BR>
<BR>
</BODY>
</HTML>