You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't a MIRA-specific issue, but I've been getting the following error since there's no pre-built wheel for pygraphviz for my system configuration (py310, mac os 13)
I recently encountered an adjacent issue. I recently tried to install graphviz on my machine (CentOS Stream 9) and I wasn't able to do it, i.e. sudo dnf install graphviz graphviz-devel returned an error that says it cannot find graphviz-devel.
I found the solution after stitching together various forum comments together. The problem was that I was missing the CRB package repository (https://pkgs.org/search/?q=graphviz-devel).
# list all repos
dnf repolist all
# enable it
sudo dnf config-manager --set-enabled crb
# check availability
dnf list available graphviz*
# install
sudo dnf install graphviz graphviz-devel
pip install pygraphviz
This isn't a MIRA-specific issue, but I've been getting the following error since there's no pre-built wheel for pygraphviz for my system configuration (py310, mac os 13)
I figured out based on the homebrew troubleshooting in the docs (https://pygraphviz.github.io/documentation/stable/install.html#homebrew) that the following works:
we should add this to our installation docs for anyone else who might stumble on this. I'm looking into this to see if this will work with tox
The text was updated successfully, but these errors were encountered: