8000 Updating brew install command to avoid pkg-config warning by izumiberat · Pull Request #891 · python/devguide · GitHub
[go: up one dir, main page]

Skip to content

Updating brew install command to avoid pkg-config warning #891

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

Merged
merged 3 commits into from
Jun 11, 2022
Merged
Changes from 1 commit
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
Next Next commit
Updating brew install command to avoid warning
I am using Mac OS Catalina 10.15.7.
To avoid getting the following warning : 
$ configure: WARNING: pkg-config is missing. Some dependencies may not be detected correctly.
$ brew install pkg-config 
needs to be run.
  • Loading branch information
izumiberat authored Jun 9, 2022
commit 4427dfe6fa0e054c3204fb5f9ad5298d9b0c5be0
2 changes: 1 addition & 1 deletion setup.rst
5D04
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ for the header and library files to your ``configure`` command. For example,

with **Homebrew**::

$ brew install openssl xz gdbm
$ brew install pkg-config openssl xz gdbm

and ``configure`` Python versions >= 3.7::

Expand Down
0