Ho scaricato la Graphviz 2.38
versione MSI e installato nella cartella C:\Python34
, quindi eseguo pip install Graphviz
, tutto è andato bene. Nel percorso del sistema ho aggiunto C:\Python34\bin
. Quando ho provato a eseguire uno script di test, in linea filename=dot.render(filename='test')
, ho ricevuto un messaggio
RuntimeError: failed to execute ['dot', '-Tpdf', '-O', 'test'], make sure the Graphviz executables are on your systems' path
Ho provato a inserire "C:\Python34\bin\dot.exe"
il percorso del sistema, ma non ha funzionato e ho persino creato una nuova variabile d'ambiente "GRAPHVIZ_DOT"
con valore "C:\Python34\bin\dot.exe"
, ancora non funzionante. Ho provato a disinstallare Graphviz e pip uninstall graphviz
, quindi, reinstallarlo e installarlo nuovamente, ma non funziona nulla.
L'intero messaggio di traceback è:
Traceback (most recent call last):
File "C:\Python34\lib\site-packages\graphviz\files.py", line 220, in render
proc = subprocess.Popen(cmd, startupinfo=STARTUPINFO)
File "C:\Python34\lib\subprocess.py", line 859, in __init__
restore_signals, start_new_session)
File "C:\Python34\lib\subprocess.py", line 1112, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Documents\Kissmetrics\curves and lines\eventNodes.py", line 56, in <module>
filename=dot.render(filename='test')
File "C:\Python34\lib\site-packages\graphviz\files.py", line 225, in render
'are on your systems\' path' % cmd)
RuntimeError: failed to execute ['dot', '-Tpdf', '-O', 'test'], make sure the Graphviz executables are on your systems' path
Qualcuno ha qualche esperienza con esso?