Use system-wide installation of graphviz in sage?
I am trying to install pygraphviz in sage 7.3 on a Debian jessy machine, but it already fails at:
sage -i graphviz
================================ WARNING =================================
You are about to download and install an unmaintained experimental
package. This probably won't work at all for you! There is no guarantee
that it will build correctly, or behave as expected. Use at your own risk!
This package will be removed in future versions of SageMath. If you care
about this package, you should make a proper new-style package instead.
For more information about making Sage packages, see
http://doc.sagemath.org/html/en/developer/packaging.html
==========================================================================
I don't want to break sage, so I am wondering if there is a way to make sage use the system-wide installation of pygraphviz instead.
I followed the instructions here: http://stackoverflow.com/questions/15... Now running the SMC docker with sage 7.5.1 locally, I installed pygraphviz both system wide and in
sage-sh
, with the result that I can run:but if I run sage import pygraphviz
I get:
ImportError: No module named pygraphviz
I really don't know what I am doing here and what I should do. Help!