Python出现Could not find a version that satisfies the requirement openpyxl (from versions: )

win10 pip3 安装某些包失败提示"Could not find a version that satisfies the requirement openpyxl (from versions: )"

按照提示所示是其中一个原因是pip版本过低,需要更新pip:

 1 python -m pip install --upgrade pip

2 或者

3 python -m pip3 install --upgrade pip3 

原文地址:https://www.cnblogs.com/z3286586/p/12738158.html