मैंने Graphviz 2.38
एमएसआई संस्करण डाउनलोड किया और फ़ोल्डर के नीचे स्थापित किया C:\Python34
, फिर मैं चलाता हूं pip install Graphviz
, सब कुछ ठीक हो गया। सिस्टम के पथ में मैंने जोड़ा C:\Python34\bin
। जब मैंने परीक्षण स्क्रिप्ट चलाने की कोशिश की filename=dot.render(filename='test')
, तो मुझे एक संदेश मिला
RuntimeError: failed to execute ['dot', '-Tpdf', '-O', 'test'], make sure the Graphviz executables are on your systems' path
मैंने "C:\Python34\bin\dot.exe"
सिस्टम के पथ में डालने की कोशिश की , लेकिन यह काम नहीं किया, और मैंने "GRAPHVIZ_DOT"
मूल्य के साथ एक नया वातावरण चर भी बनाया "C:\Python34\bin\dot.exe"
, अभी भी काम नहीं कर रहा है। मैंने ग्राफविज़ को अनइंस्टॉल करने की कोशिश की और pip uninstall graphviz
फिर इसे फिर से इंस्टॉल किया और फिर से इंस्टॉल किया, लेकिन कुछ भी काम नहीं आया।
संपूर्ण ट्रेसबैक संदेश है:
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
क्या किसी को इसके साथ कोई अनुभव है?