解决 AttributeError: module numba has no attribute core问题

问题描述:当时我正在进行u-net的模型验证。需要应用到 hausdorff.py 去调用距离公式。然后这个包会调用numba这个包。

然后会提示AttributeError: module 'numba' has no attribute 'core'这个错误。

再经过查找国外网站资料,原创作者建议升级numba包,同时也升级一下'llvmlite'这个包(必须升级到0.32才可以相互匹配)。于是我们有了如下操作:

解决步骤:

1.尝试升级numba这个包。提示:Error: Cannot unistall 'llvmlite', It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. 中文意思就是,这个'llvmlite'包的路径很分散,我们不好统一一次性删除。

2.查阅文献无果。选择提升权限操作。

3.先使用pip uninstall numba

4.pip install numba --user --ignore-installed llvmlite

该操作会同时升级如下包:numba, llvmlite, setuptools,numpy。升级过后

提示:Successfully installed llvmlite-0.33.0 numba-0.50.0 numpy-1.18.5 setuptools-47.3.1

问题成功解决。

你可能感兴趣的:(解决 AttributeError: module numba has no attribute core问题)