anaconda安装tensorflow1.01版本

anaconda的tensorflow还是老版本的0.1,所以安装1.0.1就不能直接使用conda install tensorflow。可以采用以下方法:
1,激活你要安装tensorflow的环境:
这里我要将tensorflow安装到root中,所以输入以下代码:

source activate root

而后在每一个命令行前出现环境的名字就成功了,例如:

(root) yjrubuntu@yjrubuntu--G480:~$

2, 采用pip install的方法安装。
这里推荐清华的镜像:https://mirrors.tuna.tsinghua.edu.cn/help/tensorflow/ 在这里选择你要安装的版本,最下面一行就是链接。
例如出现:

pip install \
  -i https://pypi.tuna.tsinghua.edu.cn/simple/ \
  https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/tensorflow-1.0.1-cp27-none-linux_x86_64.whl

那么下面的就是链接:

https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/tensorflow-1.0.1-cp27-none-linux_x86_64.whl

找到链接之后就安装,输入如下命令:

pip install --ignore-installed --upgrade  https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/tensorflow-1.0.1-cp27-none-linux_x86_64.whl

记住:后面是你要安装的tensorflow版本的链接。
3,完成,查看一下有没有安装完成

conda list

如果有

tensorflow                1.0.1                     <pip>

就成功了。

你可能感兴趣的:(Linux,机器学习,python,tensoflow,anaconda)