condv installまたはpip installを使用して、graphvizを正しくインストールしてインポートすることができません。私はanacondaでjupyterを使用しています。Graphvizがcondaまたはpipを使用していません
conda install -c anaconda graphviz
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-2-0e78fd6401bd> in <module>()
----> 1 import graphviz
2 dot_data = tree.export_graphviz(clf, out_file=None)
3 graph = graphviz.Source(dot_data)
4 graph.render("iris")
ModuleNotFoundError: No module named 'graphviz'
私はピップを使用してインストールすると私は正常にインポートすることができますが、私は以下のコードを実行したときに、私が実行している場合は、次のgraph.renderで終わる非常に長いエラーメッセージが出ます:以下
from sklearn.datasets import load_iris
from sklearn import tree
import graphviz
iris = load_iris()
clf = tree.DecisionTreeClassifier()
clf = clf.fit(iris.data, iris.target)
dot_data = tree.export_graphviz(clf, out_file=None)
graph = graphviz.Source(dot_data)
graph.render("iris")
を
ExecutableNotFound: failed to execute ['dot', '-Tpdf', '-O', 'iris'], make sure the Graphviz executables are on your systems' PATH
私はgraphvizフォルダがPATHにあるディレクトリを持っています。
誰かが私が間違っていることを知っていますか?