conda安装tensorflow教程,亲测成功!

1、打开Anaconda Prompt,输入命令:

conda create -n "conda环境名” python=3.6

记住一定要选择3.6的python版本,亲测最稳定的版本!

2、激活子环境,输入命令:

conda activate "刚刚创建的环境名"

3、设置镜像源,加快下载速度

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

4、最后,输入下载命令:

conda install tensorflow-gpu==2.0.0

大功告成!

补充

如果上面方法不成功,可以再试试下面的方法

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn tensorflow==2.0.0
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐