利用清华镜像在ubantu系统上安装tensorflow

通用命令(python2 用pip; python3用pip3)
CPU版本

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow

GPU 版本

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow-gpu

如果 pip3 command not found 但 pip3 已经存在

则用python3 -m pip代替 pip3

python3 -m pip install tensorflow-gpu==1.5.0  -i https://pypi.tuna.tsinghua.edu.cn/simple (安装包名称写在前后都可以)

参考 https://blog.csdn.net/qq_35296537/article/details/81129143

         https://stackoverflow.com/questions/30993086/pip3-command-not-found-but-python3-pip-is-already-installed/36957686#36957686

你可能感兴趣的:(利用清华镜像在ubantu系统上安装tensorflow)