Python找不到满足urllib3要求的版本>=1.15

Python找不到满足urllib3要求的版本>=1.15,python,api,Python,Api,我正在尝试从以下API安装python包: 按照链接中的说明,我被告知通过在终端上键入以下内容来安装软件包: pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git 但是,此错误不会停止显示: Could not find a version that satisfies the requirement urllib3>=1.15 (from crowdemotion-api-client-python==1.0.0

我正在尝试从以下API安装python包:

按照链接中的说明,我被告知通过在终端上键入以下内容来安装软件包:

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
但是,此错误不会停止显示:

Could not find a version that satisfies the requirement urllib3>=1.15
 (from crowdemotion-api-client-python==1.0.0) (from versions: )
No matching distribution found for urllib3>=1.15 (from crowdemotion-api-client-python==1.0.0)

我的计算机上安装了urllib3的最新版本,所以我不知道发生了什么

你能做一个
pip freeze | grep urllib3
并用结果更新你的问题吗?结果是一样的:找不到满足要求的版本urllib3>=1.15(来自CrowdMotion api客户端python==1.0.0)(来自版本:)找不到urllib3>=1.15(来自CrowdMotion api客户端python==1.0.0)当您运行
pip freeze
时?在我运行pip freeze yes之后,这听起来并不正确。可以尝试
pip卸载crowdmotionapi客户端python
,然后尝试运行它