#python #graphviz
Вопрос:
Я попытался установить graphviz
пакет с помощью pip install graphviz
, и я успешно импортировал его в jupyter notebook с python3, но не смог запустить приведенный ниже код:
s = Source.from_file("tree_test.dot")
s.view()
tree_test.dot
Файл находится в текущем рабочем каталоге. Сообщение об ошибке выглядит так:
ExecutableNotFound: failed to execute ['dot', '-Kdot', '-Tpdf', '-O', 'tree_test.dot'], make sure the Graphviz executables are on your systems' PATH
Мне посоветовали сначала удалить graphviz
с помощью pip uninstall graphviz
, а затем попробовать conda install graphviz
и conda install python-graphviz
, соответственно. Но им обоим не удалось установить graphviz
, и вот сообщение об ошибке :
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: |
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
.....
#(spend long time examining conflict and shows what those conflicts are but still failed to install graphviz)#
Ответ №1:
Согласно документации пакета Anaconda, Вам необходимо ввести:
conda install -c anaconda graphviz