Windows 下使用pip install 安装出现报错ERROR: Cannot unpack file解决办法
使用豆瓣园安装robotframework-ride时,出现Cannot unpack file报错:ERROR: Cannot unpack file C:\Users\ZHANGW~1\AppData\Local\Temp\pip-unpack-ikp51qe3\simple.htm (downloaded from C:\Users\ZHANGW~1\AppData\Local\Temp\p
·
使用豆瓣园安装robotframework-ride时,出现Cannot unpack file报错:
ERROR: Cannot unpack file C:\Users\ZHANGW~1\AppData\Local\Temp\pip-unpack-ikp51qe3\simple.htm (downloaded from C:\Users\ZHANGW~1\AppData\Local\Temp\pip-req-build-7u4k70qf, content-type: text/html); cannot detect archive format
ERROR: Cannot determine archive format of C:\Users\ZHANGW~1\AppData\Local\Temp\pip-req-build-7u4k70qf
我们只需将命令改为以下即可:
pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com pakegename
经过设置 --trusted-host pypi.douban.com 信任该镜像源。
例如:我要安装robotframework-ride,命令如下:
pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com robotframework-ride
常用国内镜像网站
-
阿里云 http://mirrors.aliyun.com/pypi/simple
-
豆瓣 http://pypi.douban.com/simple
-
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple
-
中国科技大学 http://pypi.mirrors.ustc.edu.cn/simple
-
网易云 https://mirrors.163.com/pypi/simple
当咱们用其余源进行安装时,出现上面问题时。一样能够使用这种解决方法:
# 以清华源为例
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn pakegename
更多推荐
已为社区贡献2条内容
所有评论(0)