python: UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization问题解决

目录

问题解决

我在pycharm里运行代码时出现了:UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization的问题,网上找了几个方法都没有解决。但是解决方案都和numpypytorch有关系,所以我尝试重新安装numpy,但是仍然出现问题。

解决方案:注意,因为我使用的anaconda,而 conda可以等价为pip
(1)先删除numpy

conda uninstall numpy

(2)重新安装numpy

conda install numpy

(3)删除mkl-service

cond uninstall mkl-service

(4)重新安装mkl-service

conda install mkl-service

最终解决,不过这个问题看起来只是个warning,不过解决一下看的顺眼。

猜你喜欢

转载自blog.csdn.net/aruewds/article/details/125851079