python3.6-报错InvocationException: GraphViz's executables not found—py3.6装pygraphviz失败换装pydotplus—两步解决

  1. 先安装GraphViz软件,将GraphViz的安装目录添加到环境变量path里
  2. 如果你是python3.4版本的还可以安装pygraphviz,但是如果是3.5以后的版本,就只能安装pydotplus了,安装这个两个包时使用pip install就好了。
  3. 很多教程里描述安装完GraphViz后再安装pygraphviz,但是python版本不是2.7或者3.4的话就比较麻烦了,所以在cmd下直接pip install pydotplus安装就好啦。
  4. 参考链接:
    》》》这个是介绍安装pydotplus的http://wenda.chinahadoop.cn/question/5518
    》》》另外一个介绍pygraphviz的安装https://blog.csdn.net/cheng_csdn2018/article/details/79101825

你可能感兴趣的:(python3.6-报错InvocationException: GraphViz's executables not found—py3.6装pygraphviz失败换装pydotplus—两步解决)