Failed to import pydot

Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work.的解决办法


报错时提示没有pydot和graphviz模块,但是在安装的时候需要注意安装模块的位置, 如果使用的是虚拟环境下, 后者的模块要安装在系统的默认环境中

使用以下两条语句进行安装

pip install pydot-ng
sudo apt-get install graphviz

你可能感兴趣的:(python)