pip使用外链报错:Cannot determine archive format of /tmp/pip-fd2724ty-build

conda安装tensorflow的时候,pip install tensorflow-gpu超级慢,慢到需要1day,直到报错timeout。

找到清华源:https://mirror.tuna.tsinghua.edu.cn/help/tensorflow/

pip使用外链报错:Cannot determine archive format of /tmp/pip-fd2724ty-build_第1张图片

实际使用后,仍然有错:

pip使用外链报错:Cannot determine archive format of /tmp/pip-fd2724ty-build_第2张图片

That's odd. It is even odd that I cannot find a solution on web.

/tmp/fd...文件夹也是打不开的,所以只有可能命令格式错误。镜像只更新到1.10.0,可能pip指令也不是那么up to date,所以查找pip handbook:https://packaging.python.org/tutorials/installing-packages/#installing-from-other-indexes

外链(清华源)下载软件是要使用新命令的:

sudo pip3 install   --index-url https://pypi.tuna.tsinghua.edu.cn/simple/ tensorflow-gpu

 

你可能感兴趣的:(Ubuntu)