ERROR:无法找到满足要求的protos版本ERROR:试图安装protos时没有找到protos的匹配发行版.<



我试图使用pip install protos安装protos,但我得到以下错误消息ERROR: Could not find a version that satisfies the requirement protos ERROR: No matching distribution found for protos(这是2个不同的行顺便说一下)。有人有同样的问题吗,因为也许我没有达到要求,但问题是我不知道是哪些要求,我找不到任何信息。我使用python 3.6.2, pip 20.3.3和windows 10

protos包可以在这里找到:https://pypi.org/project/protos/

根据PyPi页面,它需要Python 3.7或更高版本。由于您正在运行Python 3.6,因此在运行pip install protos时得到错误消息。

如果你正在寻找谷歌的协议缓冲区,那么你应该看看pip install protobuf(文档在这里)。