为了构建GeoJson,包使用:
import matplotlib._cntr as cntr
使用matplotlib 2.2.0时,它返回
ImportError: No module named _cntr
应如何导入?
使用以前版本的Matplotlib,特别是2.1.0它可以工作。
答案 0 :(得分:2)
这是一个私有模块,不应该被第三方软件包使用。
有关单独打包该代码的努力,请参阅https://github.com/matplotlib/legacycontour。
答案 1 :(得分:0)
_cntr
不再是matplotlib的一部分。我已经没有使用过几个版本了,我想它现在已经完全删除了。
您当然可以将其版本从先前版本(针对同一系统编译)复制到matplotlib文件夹,以继续将其导入为matplotlib._cntr
。