在dos命令窗口输入pip install flask 遇到错误

错误:

ERROR: Could not find a version that satisfies the requirement Werkzeug>=0.15 (from flask) (from versions: none)
ERROR: No matching distribution found for Werkzeug>=0.15 (from flask)

 

 

解决办法

  1.  pip --trusted-host pypi.python.org install 安装包名字(flask)

 

  2.  再不行 用镜像网站

  pip install 安装包名字 -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com

 

相关文章:

  • 2021-12-11
  • 2022-12-23
  • 2021-10-19
  • 2021-10-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-24
  • 2021-12-21
  • 2021-05-21
  • 2021-11-07
  • 2022-12-23
  • 2021-07-29
相关资源
相似解决方案