tensorflow安装和版本选择
版本选择看这里
https://blog.csdn.net/qiancaobaicheng/article/details/95226499
安装看这里
安装anaconda,然后用python的pip可以安装特定版本的tensorflow,如:
pip install tensorflow-gpu==1.4.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
卸载特定版本的tensorflow,如:
pip uninstall tensorflow-gpu==1.4.0
升级到最新:
GPU版本:
pip install --upgrade tensorflow-gpu
CPU版本:
pip install--upgrade tensorflow
如何查看当前tensorflow版本:
python
import tensorflow as tf
tf.__version__
如何查看当前tensorflow的安装路径:
tf.__path__
查看是否支持gpu
import tensorflow as tf
print(tf.test.is_gpu_available())