[Python] InvocationException: GraphViz's executables not found 오류?

2020. 3. 1. 23:04오류

DecisionTree를 생성한 후 그래프를 보고자 할 때 graphviz오류가 날 때가 있습니다.

 

pip install graphviz를 한 후에도 오류가 난다면 

 

환경변수에 graphviz경로를 설치해주어야 합니다.

 

아래 경로를 통해 Graphviz-2.38 msi를 다운로드합니다.

https://graphviz.gitlab.io/_pages/Download/Download_windows.html

 

Windows Packages

Windows Packages Note: These Visual Studio packages do not alter the PATH variable or access the registry at all. If you wish to use the command-line interface to Graphviz or are using some other program that calls a Graphviz program, you will need to set

graphviz.gitlab.io

 

Program Files(x86)에 Graphviz-2.38 폴더가 생긴 것을 확인할 수 있을 것입니다.

 

아래와 같은 방법을 통해 해결할 수 있습니다.

 

내PC>속성>고급시스템설정>환경변수>시스템변수 Path 편집> C:\Program Files (x86)\Graphviz2.38\bin 추가하기

 

위 방법 적용 후 파이썬을 끄고 재접속한 후 실행하면 해결될 것입니다.

728x90