新建文件 Software/Application/Tensorflow/安装_Tensorflow.md

This commit is contained in:
lion187 2019-03-13 17:07:58 +08:00
parent 6f1fcd151d
commit 8a4d7cad81
1 changed files with 43 additions and 0 deletions

View File

@ -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
更详细的版本历史请访问:<https://pypi.org/project/tensorflow/#history>