2020/12/05
Python実行時に出力されたエラーである、'Failed to import pydot ... 'の解消方法を記す。
エラー文
普段見るのとは違う、以下のエラーが吐き出された。
('Failed to import pydot. You must `pip install pydot` and install graphviz (https://graphviz.gitlab.io/download/), ', 'for `pydotprint` to work.')
方法
私の環境の場合、以下のコマンドが上記のエラーを対処するための十分条件であった
$ pip install pydot
$ pip install pydotplus
$ pip install graphviz
$ sudo apt install graphviz