ฉันดาวน์โหลดGraphviz 2.38
เวอร์ชัน MSI และติดตั้งภายใต้โฟลเดอร์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"
ก็ยังไม่ทำงาน ฉันพยายามถอนการติดตั้ง Graphviz pip uninstall graphviz
จากนั้นติดตั้งใหม่และติดตั้ง pip อีกครั้ง แต่ไม่มีอะไรทำงาน
ข้อความย้อนกลับทั้งหมดคือ:
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
ใครมีประสบการณ์กับมันบ้าง?