Could not find a version that satisfies the requirement flask (from versions: )No matching .....

环境配置库:

        使用pip/pip3 安装flask出现一下的错误:

Could not find a version that satisfies the requirement flask (from versions: )No matching ....._第1张图片

        通过pip list查询之后,发现未能成功安装

解决方案:

        原因之一:pip 版本过低,不能进行下载:更新版本

python -m pip install --upgrade pip     

        更新结果如下:

Could not find a version that satisfies the requirement flask (from versions: )No matching ....._第2张图片

继续测试安装: 成功解决

Could not find a version that satisfies the requirement flask (from versions: )No matching ....._第3张图片

 

        

你可能感兴趣的:(Python,flask)