ann-visualizer icon indicating copy to clipboard operation
ann-visualizer copied to clipboard

make sure the Graphviz executables are on your systems' PATH

Open njustzsm opened this issue 6 years ago • 6 comments

I use this tool,but it can't work, I have executed Graphviz ,how to deal it? win10 anaconda

njustzsm avatar Jun 07 '18 08:06 njustzsm

You need to set the system path variable to your local graphviz installation. So for example

c:\Program Files (x86)\Graphviz2.38\

needs to be set as system path variable.

tobiaspiechowiak avatar Aug 30 '18 15:08 tobiaspiechowiak

Hi,

I was with the same problem on Anaconda +win 7.

I installed the Graphviz and add the Path Variable. To add the Path Variable, follow this link: https://stackoverflow.com/a/47031762

I don't know if just this solved the problem because before add the path variable I tried:

  • conda install -c anaconda graphviz
  • pip install graphviz
  • pip3 install graphviz
  • conda install python-graphviz

agaelema avatar Oct 10 '18 04:10 agaelema

You can also add these lines of code:

import os os.environ['PATH'] += os.pathsep + 'place where your graphviz is installed for example C:\something\Graphviz-2.38\release\bin'

oleksii-manzik avatar Jan 15 '19 13:01 oleksii-manzik

Hi,

I was with the same problem on Anaconda +win 7.

I installed the Graphviz and add the Path Variable. To add the Path Variable, follow this link: https://stackoverflow.com/a/47031762

I don't know if just this solved the problem because before add the path variable I tried:

  • conda install -c anaconda graphviz
  • pip install graphviz
  • pip3 install graphviz
  • conda install python-graphviz

conda install python-graphviz solved my problem.

rarezhang avatar Mar 18 '20 04:03 rarezhang

Hi, I was with the same problem on Anaconda +win 7. I installed the Graphviz and add the Path Variable. To add the Path Variable, follow this link: https://stackoverflow.com/a/47031762 I don't know if just this solved the problem because before add the path variable I tried:

  • conda install -c anaconda graphviz
  • pip install graphviz
  • pip3 install graphviz
  • conda install python-graphviz

conda install python-graphviz solved my problem.

TY SO MUCH

scriabinEtude avatar Aug 13 '20 14:08 scriabinEtude

The most important thing to realize is the package names are not the same:

  • conda install graphviz installs the binaries.
  • pip install graphviz installs the python frontend for GraphViz.
  • conda install python-graphviz installs the python frontend as well.

So with conda you want to do conda install graphviz python-graphviz.

endolith avatar Aug 13 '20 16:08 endolith