新建文件 Software/Application/Tensorflow/安装_Tensorflow.md
This commit is contained in:
parent
6f1fcd151d
commit
8a4d7cad81
|
@ -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>
|
Loading…
Reference in New Issue