Graphviz 2.38 をインストールした後、「RuntimeError: Graphviz 実行ファイルがシステムのパス上にあることを確認してください」というエラーが表示される 質問する

Graphviz 2.38 をインストールした後、「RuntimeError: Graphviz 実行ファイルがシステムのパス上にあることを確認してください」というエラーが表示される 質問する

MSIバージョンをダウンロードし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 と をアンインストールしてから再インストールし、再度 pip install を試みましたが、何も機能しません。"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

誰か経験のある人はいますか?

ベストアンサー1

システムに graphviz パッケージをインストールする必要があります (python パッケージだけではありません)。Ubuntu では、次を試してください。

sudo apt-get install graphviz

おすすめ記事