当前位置: 首页 > 工具软件 > jsonschema > 使用案例 >

解决Windows 下 jsonschema>=3.0.1, but you'll have jsonschema 2.6.0 which is incompatible 的问题

史磊
2023-12-01

pip install xxx过程中遇到jsonschema x.x.xwhich is incompatible.

小编在pip install pymsql 时,没有出现ERROR 错误,但是出现了
requests 2.18.4 has requirement idna<2.7,>=2.5, but you’ll have idna 2.8 which is incompatible.
jupyterlab-server 1.0.0 has requirement jsonschema>=3.0.1, but you’ll have jsonschema 2.6.0 which is incompatible.

这个问题。

*为了解决这个问题,最后不得已去Google找,最终找到了最关键的一句话:*Well, you can try to use this command to prevent it from crashing PIP install jsonschema = = 2.6.0… If you still have problems, please let me know and I’ll find other ways. 翻译过来就是:好吧,您可以尝试使用此命令来阻止它崩溃pip install jsonschema= =2.6.0 …如果您仍然遇到问题,请告诉我,我会找出其他方法。

所以在cmd窗口下输入:

pip install jsonschema==2.6.0 
pip install idna==2.5

如果是其他配置出现 incompatible 即 不兼容状态也仿照上面的格式

pip install XXX==x.x.x  //XXX 指的是不兼容的配置名,x.x.x指的是所需要的版本号

如果这是你需要的,那就点个赞呗!蟹蟹!!

 类似资料: