其他分享
首页 > 其他分享> > MAC使用Graphviz包报错 failed to execute PosixPath('dot')

MAC使用Graphviz包报错 failed to execute PosixPath('dot')

作者:互联网

在使用LightGBM进行可视化时,用到了Graphviz包,在安装Graphviz包时遇到了以下问题。

错误描述:

ExecutableNotFound: failed to execute PosixPath('dot'), make sure the Graphviz executables are on your systems' PATH

 

错误原因分析:

起初以为原因是未安装graphviz模块,使用pip install graphviz 之后,发现还是不行,后来用 pip uninstall graphviz 卸载之后重新安装还是不行。
最后才发现需要先安装graphviz程序。
说明一下,graphviz这个包,使用pip install graphviz 安装后,这只安装了graphviz的pyhon调用接口,使用的话还需要下载graphviz的安装文件。

 

解决方案:

mac 上可以使用以下命令安装graphviz包


————————————————
参考:

https://blog.csdn.net/qq_32731311/article/details/115578820

https://graphviz.org/download/#mac

 

标签:execute,PosixPath,Graphviz,报错,install,使用,pip,graphviz,安装
来源: https://www.cnblogs.com/sunzhiran/p/15566513.html