“dot.exe” not found in path. Pydot on Python (Windows 7)

前端 未结 8 1513
挽巷
挽巷 2021-01-31 10:04

I\'m having trouble running Python\'s pydot on Windows 7.

I installed pydot with: conda install -c rmg pydot=1.2.2

I have graphviz installed under

8条回答
  •  旧巷少年郎
    2021-01-31 10:36

    Don't use the following command if you are on Python 3:

    conda install pydot-ng 
    

    This will take your installation to Python 2.7

    Use instead

    conda install graphviz
    

提交回复
热议问题