My Django app uses PyGraphviz.
On the server I run into the same problem, that I had locally:
Running pip3 install pygraphviz
leads to this error:
ERROR: Failed building wheel for pygraphviz
Failed to build pygraphviz
ERROR: Could not build wheels for pygraphviz, which is required to install pyproject.toml-based projects
The problem is described on Stackoverflow, and the solution worked locally:
sudo apt-get install python-dev graphviz libgraphviz-dev pkg-config
I tried yum install python-dev graphviz libgraphviz-dev pkg-config
on the server,
but unsurprisingly it tells me, that I have to be root for that. What can I do?