Skip to content

Commit f3ea700

Browse files
authored
Update Install_Specify7.md
1 parent bef4f87 commit f3ea700

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

sphinx/developer_utils/Install_Specify7.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@
88
- Git
99
- (Optional) MariaDB/MySQL client-only CLI (no server)
1010

11-
> **Optional MySQL via CLI:** only if you want a local server outside Docker.
12-
> macOS (Homebrew):
13-
'''bash
14-
brew install mysql
15-
echo 'export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc
16-
'''
17-
> Ubuntu/Debian: `sudo apt-get update && sudo apt-get install -y mysql-server`
18-
> (Do NOT install or start a local server. We’ll run the DB in Docker.)
11+
**Install client only (no server):**
12+
- **macOS (Homebrew):**
13+
```bash
14+
brew install mysql-client
15+
echo 'export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc
16+
```
17+
- **Ubuntu/Debian:**
18+
```bash
19+
sudo apt-get update && sudo apt-get install -y mariadb-client
20+
```
21+
*(Do NOT install or start a local server. We’ll run the DB in Docker.)*
1922

2023
---
2124

0 commit comments

Comments
 (0)