【发布时间】:2018-08-04 04:39:37
【问题描述】:
当我尝试运行我的程序时,我得到了这个错误
from . import _tifffile
Runtime error: module compiled against API version 0xb but this version of numpy is 0xa
当我使用
升级我的 numpy 安装时pip install numpy --upgrade
numpy 版本匹配,但更新后的 numpy 库替换了我的 numpy+MKL,我收到此错误
> from numpy._distributor_init import NUMPY_MKL # requires numpy+mkl
> ImportError: cannot import name 'NUMPY_MKL'
如何升级我的 numpy_MKL 库?
【问题讨论】:
-
你在 Windows 上吗?
标签: python-3.x numpy pip intel-mkl