TensorFlow报错FutureWarning: Passing (type, 1) or ‘1type‘ as a synonym of type is deprecated......

在conda环境下的3.6.2版本python解释器安装了1.14版本的tensorflow 运行一个加法 出现了很多FutureWarning Passing (type, 1) or '1type' as a synonym of type is deprecated

这个就是环境中的numpy版本过高导致的

我们直接安装个低版本的就可以了

在终端中输入

pip install numpy==1.16.0

安装了新的会把之前的版本自动卸载

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