You must install pydot and graphviz for `pydotprint` to work.
时间: 2023-09-10 10:15:20 浏览: 126
Pydot与Graphviz的安装(遇到的各种坑pydot failed to call graphviz)
5星 · 资源好评率100%
这个错误提示是因为你在使用 `pydotprint` 函数时,缺少了 `pydot` 和 `graphviz` 这两个库。你需要先安装这两个库,才能够使用 `pydotprint` 函数。你可以使用以下命令来安装:
```
pip install pydot
pip install graphviz
```
安装完成后,你可以再次尝试使用 `pydotprint` 函数。
阅读全文