python中pip下载错误的问题

参考文章:https://blog.csdn.net/cn_1937/article/details/81449484

文章中的解决方案:就两种下载方式

  • 第一种常规但是最慢
pip install pymysql
  • 第二种就是用镜像:不过又分两种写法
  • pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn pymysql
    
  • pip install https://pypi.tuna.tsinghua.edu.cn/simple pymysql

一般国内就是三个镜像:

清华:https://pypi.tuna.tsinghua.edu.cn/simple

阿里云:http://mirrors.aliyun.com/pypi/simple/

豆瓣:http://pypi.douban.com/simple/

note:新版ubuntu要求使用https源,要注意。

例如:pip3 install -i https://pypi.douban.com/simple/ 包名

两种镜像可能会有以下两种报错方式:

第一种带--trusted-host 的报错:
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement movie
ERROR: No matching distribution found for movie
第二种(不带trust host的):
  ERROR: Cannot unpack file C:\Users\HP\AppData\Local\Temp\pip-unpack-lmqnkf6f\simple.html (downloaded from C:\Users\HP\AppData\Local\Temp\pip-req-build-0ls22eva, co
ntent-type: text/html); cannot detect archive format
ERROR: Cannot determine archive format of C:\Users\HP\AppData\Local\Temp\pip-req-build-0ls22eva

一般来说第二种的报错都可以用加上--trust-host的方式来解决,如果加上了还不行,建议参考https://blog.csdn.net/Dashi_Lu/article/details/87798473

你可能感兴趣的:(python,python)