Skip to content

Commit cb236e9

Browse files
add bash syntax highlighting to README.md (#665)
1 parent 0d0fff7 commit cb236e9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@ $ pip install mysqlclient
4848

4949
Install MySQL and mysqlclient:
5050

51-
```
52-
# Assume you are activating Python 3 venv
51+
```bash
52+
$ # Assume you are activating Python 3 venv
5353
$ brew install mysql pkg-config
5454
$ pip install mysqlclient
5555
```
5656

5757
If you don't want to install MySQL server, you can use mysql-client instead:
5858

59-
```
60-
# Assume you are activating Python 3 venv
59+
```bash
60+
$ # Assume you are activating Python 3 venv
6161
$ brew install mysql-client pkg-config
6262
$ export PKG_CONFIG_PATH="/opt/homebrew/opt/mysql-client/lib/pkgconfig"
6363
$ pip install mysqlclient
@@ -88,7 +88,7 @@ compiler/linker flags.
8888
You can use `MYSQLCLIENT_CFLAGS` and `MYSQLCLIENT_LDFLAGS` environment
8989
variables to customize compiler/linker options.
9090

91-
```
91+
```bash
9292
$ export MYSQLCLIENT_CFLAGS=`pkg-config mysqlclient --cflags`
9393
$ export MYSQLCLIENT_LDFLAGS=`pkg-config mysqlclient --libs`
9494
$ pip install mysqlclient

0 commit comments

Comments
 (0)