美文网首页
利用清华镜像在ubantu系统上安装tensorflow

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

作者: 爬的慢的蜗牛 | 来源:发表于2019-04-01 22:16 被阅读0次

通用命令(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

      本文链接:https://www.haomeiwen.com/subject/pyfibqtx.html