代碼:RuntimeError:模塊編譯針對API版本,但這個版本numpy的是9
import numpy as np
import cv
控制檯:
>>> runfile('/Users/isaiahnields/.spyder2/temp.py', wdir='/Users/isaiahnields/.spyder2')
RuntimeError: module compiled against API version a but this version of numpy is 9
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Applications/Spyder-Py2.app/Contents/Resources/lib/python2.7/spyderlib/widgets/externalshell/sitecustomize.py", line 685, in runfile
execfile(filename, namespace)
File "/Applications/Spyder-Py2.app/Contents/Resources/lib/python2.7/spyderlib/widgets/externalshell/sitecustomize.py", line 78, in execfile
builtins.execfile(filename, *where)
File "/Users/isaiahnields/.spyder2/temp.py", line 9, in <module>
import cv
File "/Applications/Spyder-Py2.app/Contents/Resources/lib/python2.7/cv.py", line 1, in <module>
from cv2.cv import *
ImportError: numpy.core.multiarray failed to import
>>>
系統信息:OS X埃爾卡皮坦的Macbook Air,1.3 GHz的英特爾Core i5,8 GB 1600 HMz DDR3
我已經嘗試更新numpy。我必須將cv.py添加到Spyder-Py2中的python2.7文件夾中是否還有其他需要添加的內容?
Becareful!它可能不是一個好主意,你可以安裝多個版本的Python。你可能會像這個人一樣:http://stackoverflow.com/questions/14117945/too-many-different-python-versions-on-my-system-and-causing-problems – Jakobovski