failed to import pydot. you must install pydot and graphviz for `pydotprint` to work.
时间: 2023-06-05 22:48:03 浏览: 212
解决使用export_graphviz可视化树报错的问题
5星 · 资源好评率100%
这个错误提示是因为在你的环境中缺少了 `pydot` 和 `graphviz` 库,导致无法使用 `pydotprint` 函数。要解决这个问题,你需要先安装这两个库。
具体来说,你可以通过以下命令使用 pip 安装这两个库:
```
pip install pydot graphviz
```
安装完成后,你就可以在代码中使用 `pydotprint` 函数了。
阅读全文