From 8a4d7cad81c0f7f1f853e112ee9d1c6937353628 Mon Sep 17 00:00:00 2001 From: lion187 Date: Wed, 13 Mar 2019 17:07:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=BB=BA=E6=96=87=E4=BB=B6=20Software?= =?UTF-8?q?/Application/Tensorflow/=E5=AE=89=E8=A3=85=5FTensorflow.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Application/Tensorflow/安装_Tensorflow.md | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 Software/Application/Tensorflow/安装_Tensorflow.md diff --git a/Software/Application/Tensorflow/安装_Tensorflow.md b/Software/Application/Tensorflow/安装_Tensorflow.md new file mode 100644 index 0000000..46bbf84 --- /dev/null +++ b/Software/Application/Tensorflow/安装_Tensorflow.md @@ -0,0 +1,43 @@ +# 安装 Tensorflow + +注意区分 python2 还是 python3,使用 + + pip2 install numpy + pip2 install keras + pip2 install tensorflow + +即可安装 CPU 版本的 Tensorflow,使用 + + pip2 install tensorflow-gpu + +命令即可安装 GPU 版本的 Tensorflow。 + +需要注意的是,Tensorflow 1.6.0 版本以后开始使用 AVX,某些 Intel CPU 不支持 AVX,导致 import tensorflow 时崩溃,自动退出 python 环境。对于此类 CPU,可以安装 1.5.0 或更早版本的 Tensorflow,命令如下: + + pip2 install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.5.0-cp27-none-linux_x86_64.whl + +其中 cp27 代表对应 python 2.7 版本。Tensorflow 历史版本号有: + + 1.13.1 + 1.12.0 + 1.11.0 + 1.10.1 + 1.10.0 + 1.9.0 + 1.8.0 + 1.7.1 + 1.7.0 + 1.6.0 + 1.5.1 + 1.5.0 + 1.4.1 + 1.4.0 + 1.3.0 + 1.2.1 + 1.2.0 + 1.1.0 + 1.0.1 + 1.0.0 + 0.12.1 + +更详细的版本历史请访问: