RuntimeError: module compiled against API version 0xb but this version of numpy is 0xa

RuntimeError: module compiled against API version 0xb but this version of numpy is 0xa_第1张图片

在安装Python版openCV时安装完成后,包括其他第三方库时会有如下问题,这也是numpy版本的问题,可以看见上面的numpy版本是 1.11.1的,而最新的是1.13.3版本的。所以需要更新numpy:

pip install --upgrade numpy

或者可以尝试:

easy_install numpy

RuntimeError: module compiled against API version 0xb but this version of numpy is 0xa_第2张图片

(Ps:手误 刚开始import输入错了,正常更新完就行了)

你可能感兴趣的:(RuntimeError: module compiled against API version 0xb but this version of numpy is 0xa)