Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated command to install pygraphviz #8

Merged
merged 1 commit into from
Jan 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions install_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ brew uninstall --ignore-dependencies python@3.12 qt6

```bash
python3.11 -m pip install -U pip
python3.11 -m pip install --global-option=build_ext \
--global-option="-I$(brew --prefix graphviz)/include/" \
--global-option="-L$(brew --prefix graphviz)/lib/" \
python3.11 -m pip install --config-settings="--global-option=build_ext" \
--config-settings="--global-option="-I$(brew --prefix graphviz)/include/"" \
--config-settings="--global-option="-L$(brew --prefix graphviz)/lib/"" \
pygraphviz
python3.11 -m pip install -U \
argcomplete catkin_pkg colcon-common-extensions coverage \
Expand Down