-
graphviz error 해결법: ExecutableNotFound: failed to execute ['dot', '-Tsvg'], make sure the Graphviz executables are on your systems' PATHError Handling 2020. 3. 17. 22:05반응형
파이썬 graphviz 에러
import graphviz 를 호출 한뒤 시각화를 하려할때 나는 에러
ExecutableNotFound: failed to execute ['dot', '-Tsvg'], make sure the Graphviz executables are on your systems' PATH
해결법
-
아래 링크 들어가
https://graphviz.gitlab.io/_pages/Download/Download_windows.html
윈도우 환경변수설정에 들어간 뒤 graphviz-2.38.msi 다운 후 설치-
사용자 환경 변수에 아래 경로 추가
C:\Program Files (x86)\Graphviz2.38\bin
-
시스템 환경변수에 아래 경로 추가
C:\Program Files (x86)\Graphviz2.38\bin\dot.exe
4. 재시작
반응형'Error Handling' 카테고리의 다른 글
-