mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-14 18:12:35 +08:00
add bash syntax highlighting to README.md
(#665)
This commit is contained in:
10
README.md
10
README.md
@ -48,16 +48,16 @@ $ pip install mysqlclient
|
||||
|
||||
Install MySQL and mysqlclient:
|
||||
|
||||
```
|
||||
# Assume you are activating Python 3 venv
|
||||
```bash
|
||||
$ # Assume you are activating Python 3 venv
|
||||
$ brew install mysql pkg-config
|
||||
$ pip install mysqlclient
|
||||
```
|
||||
|
||||
If you don't want to install MySQL server, you can use mysql-client instead:
|
||||
|
||||
```
|
||||
# Assume you are activating Python 3 venv
|
||||
```bash
|
||||
$ # Assume you are activating Python 3 venv
|
||||
$ brew install mysql-client pkg-config
|
||||
$ export PKG_CONFIG_PATH="/opt/homebrew/opt/mysql-client/lib/pkgconfig"
|
||||
$ pip install mysqlclient
|
||||
@ -88,7 +88,7 @@ compiler/linker flags.
|
||||
You can use `MYSQLCLIENT_CFLAGS` and `MYSQLCLIENT_LDFLAGS` environment
|
||||
variables to customize compiler/linker options.
|
||||
|
||||
```
|
||||
```bash
|
||||
$ export MYSQLCLIENT_CFLAGS=`pkg-config mysqlclient --cflags`
|
||||
$ export MYSQLCLIENT_LDFLAGS=`pkg-config mysqlclient --libs`
|
||||
$ pip install mysqlclient
|
||||
|
Reference in New Issue
Block a user