本文介绍了python mpl_toolkits安装问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在命令pip install mpl_toolkits之后,我收到下一个错误:

After command pip install mpl_toolkits I receive next error:

找不到与mpl_toolkits匹配的分布

No matching distribution found for mpl_toolkits

我尝试过Google,但没有任何帮助.我该如何解决?

I tried to google, but nothing helps. How can I solve this?

推荐答案

它不在PyPI上,您不应该通过pip 进行安装.如果已安装matplotlib,则应该可以直接导入mpl_toolkits:

It is not on PyPI and you should not be installing it via pip. If you have matplotlib installed, you should be able to import mpl_toolkits directly:

$ pip install --upgrade matplotlib
...

$ python
>>> import mpl_toolkits
>>> 

这篇关于python mpl_toolkits安装问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 14:48