0 Linux安装Tensorflow
0.1 基于Anaconda环境
- 创建新的虚拟环境
conda creat -n env_name tensorflow==1.14
PS:1.14是版本号,1.x需要额外安装tensorflow-gpu
- 验证tensorflow是否安装成功
# 窗口输入如下命令
conda activate env_name
python # 进入python环境
# python环境下输入
import tensorflow as tf
print(tf.__version__)
- 1.x版本tensorflow安装tensorflow-gpu
conda install tensorflow-gpu
- 验证tensorflow-gpu是否安装成功
python # 进入python环境
# python环境下输入
import tensorflow as tf
print('GPU',tf.test.is_gpu_available())