导入numpy库报错:module ‘os‘ has no attribute ‘add_dll_directory‘

在使用cv2库的时候会用到numpy库,在终端中测试安装的numpy库,1.输入python3;2.输入import numpy。

 上图是导入正常的情况,如果出现报错:module 'os' has no attribute 'add_dll_directory',我推测

可能跟numpy库的安装版本有关,因为我将版本更换为了如图所示版本

 

将原来的numpy库卸载pip uninstall numpy,重新安装numpy库pip install numpy,然后运行正常,没有报错,我查看numpy库的位置,还是和之前版本一样的安装位置,所以和安装的位置应该是没有关系。

你可能感兴趣的:(numpy,python,tensorflow)