The `ivy` executable ends up importing ivy_graphviz, which requires
pydot to be installed.
This commit is contained in:
Andrew Walter 2019-12-01 23:41:42 -05:00 коммит произвёл Ken McMillan
Родитель ceab82e9c4
Коммит d1db5aab79
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -20,6 +20,8 @@ pip install --user --upgrade $force --editable $gitroot
# see <https://github.com/pygraphviz/pygraphviz/issues/71> for more information.
pip install --user --upgrade --force-reinstall pygraphviz --install-option="--include-path=/usr/include/graphviz" --install-option="--library-path=/usr/lib/graphviz/"
# required by ivy_graphviz, which is imported when running the ivy executable
pip install pydot
# begin: ipython support (unmaintainted)
## `ipython[notebook]` requires a version of pip >= 9.0.1 to function properly
## with python 2.7. see <https://github.com/ipython/ipython/blob/master/README.rst>