本文介绍了._cntr 应该如何在 Matplotlib (LTS) 2.2.0 上导入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为了构建 GeoJson,一个包使用:

In order to construct GeoJson, a package uses:

import matplotlib._cntr as cntr

使用matplotlib 2.2.0时,它会返回

While using matplotlib 2.2.0 it returns

ImportError: No module named _cntr

应该如何导入?

在Matplotlib的早期版本中,特别是2.1.0可以工作.

With previous version of Matplotlib, specially 2.1.0 it works.

推荐答案

这是一个私有模块,不应被第三方软件包使用.

This was a private module and should not have been used by third-party packages.

请参见 https://github.com/matplotlib/legacycontour ,以包装该代码独立地.

See https://github.com/matplotlib/legacycontour for an effort to package that code independently.

这篇关于._cntr 应该如何在 Matplotlib (LTS) 2.2.0 上导入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 06:04