报错FutureWarning: Passing (type, 1) or ‘1type‘ as a synonym of type is deprecated; in a future ver...

杀马特。学长 韩版系。学妹 提交于 2021-01-26 10:23:20

PyCharm应用conda自己创建的虚拟环境里面的tensorflow1.3.0版本报错;
C:\ProgramData\Anaconda3\envs\python36tfgpu\lib\site-packages\tensorflow\python\framework\dtypes.py:516: FutureWarning: Passing (type, 1) or ‘1type’ as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / ‘(1,)type’.
_np_qint8 = np.dtype([(“qint8”, np.int8, 1)])


报错原因是Numpy版本过高为1.19;
因此,安装低版本的Numpy就不会报错,安装过程自动卸载高版本;
首先,进入自己创建的虚拟环境 >activate xxx(环境名字)
然后,安装指令为 >pip install numpy==1.16.4
执行即可。






易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!