Ubuntu安装TensorFlow和keras

1.创建新环境tensorflow-1,安装tensorflow-GPU版本

Ubuntu安装TensorFlow和keras_第1张图片

2.输入python,验证是否安装成功:

Ubuntu安装TensorFlow和keras_第2张图片

出现警告: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'.

解决方法:降低numpy版本,当下版本为1.18.5,降为1.15.4,记得先卸载1.18.5版本,降的版本应该1.16.0以下都可吧

安装后报错:

pip install scipy==1.0.0
pip install matplotlib==3.0.2
pip install Pillow==4.3.0

3.安装keras:

Ubuntu安装TensorFlow和keras_第3张图片

4.版本测试:

Ubuntu安装TensorFlow和keras_第4张图片

你可能感兴趣的:(Ubuntu安装TensorFlow和keras)