File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,22 @@ This can be fixed by running
3333sudo apt-get install python3-dev graphviz libgraphviz-dev pkg-config
3434```
3535
36+ ### macOS possible issues
37+
38+ In the case of macOS graphviz and pygraphviz can be installed with brew, running:
39+ ```
40+ brew install graphviz
41+ pip install --config-settings="--global-option=build_ext" \
42+ --config-settings="--global-option=-I$(brew --prefix graphviz)/include/" \
43+ --config-settings="--global-option=-L$(brew --prefix graphviz)/lib/" \
44+ pygraphviz
45+ ```
46+
47+ The command can fail also due to missing a rust compiler. The standar way to install it is:
48+ ```
49+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
50+ ```
51+
3652### Conda installation
3753Conda can help create a consistent environment.
3854It can also be useful to install packages without root access.
You can’t perform that action at this time.
0 commit comments