使用豆瓣園安裝mysqlclient時,出現Cannot unpack file報錯:
> pip install mysqlclient==1.3.12 -index-url https://pypi.douban.com/simple
ERROR: Cannot unpack file C:\Users\songjian\AppData\Local\Temp\pip-unpack-vmrr5ivz\simple.htm (downloaded from C:\Users\songjian\AppData\Local\Temp\pip-req-build-kxphz3oa, content-type: text/html); cannot detect archive format
ERROR: Cannot determine archive format of C:\Users\songjian\AppData\Local\Temp\pip-req-build-kxphz3oa
解決辦法:
pip install mysqlclient==1.3.12 -i https://pypi.douban.com/simple --trust -host=pypi.douban.com
其他pip常用國內鏡像網站
阿里雲:http://mirrors.aliyun.com/pypi/simple/
中國科技大學:https://pypi.mirrors.ustc.edu.cn/simple/
清華大學:https://pypi.tuna.tsinghua.edu.cn/simple/
原文鏈接:https://blog.csdn.net/weixin_44193978/article/details/105348880