We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b162ddd commit ba85984Copy full SHA for ba85984
README.md
@@ -50,17 +50,16 @@ Install MySQL and mysqlclient:
50
51
```
52
# Assume you are activating Python 3 venv
53
-$ brew install mysql
+$ brew install mysql pkg-config
54
$ pip install mysqlclient
55
56
57
If you don't want to install MySQL server, you can use mysql-client instead:
58
59
60
61
-$ brew install mysql-client
62
-$ echo 'export PATH="/usr/local/opt/mysql-client/bin:$PATH"' >> ~/.bash_profile
63
-$ export PATH="/usr/local/opt/mysql-client/bin:$PATH"
+$ brew install mysql-client pkg-config
+$ export PKG_CONFIG_PATH="/opt/homebrew/opt/mysql-client/lib/pkgconfig"
64
65
66
0 commit comments