Skip to content

Commit

Permalink
Add Zsh and Bash syntax highlighting to README.md
Browse files Browse the repository at this point in the history
Verified exhaustiveness thanks to:

```bash
grep -r '```' --include=*.md
```
  • Loading branch information
Benjamin-Loison committed Nov 10, 2023
1 parent 91c0428 commit 8027b52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ $ pip install mysqlclient

Install MySQL and mysqlclient:

```
```zsh
# 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:

```
```zsh
# Assume you are activating Python 3 venv
$ brew install mysql-client pkg-config
$ export PKG_CONFIG_PATH="/opt/homebrew/opt/mysql-client/lib/pkgconfig"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8027b52

Please sign in to comment.