Skip to content

Commit

Permalink
docs: fix indentation issue in CONTRIBUTION.md (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaoYusong authored Dec 7, 2024
1 parent 4fd1595 commit a70223d
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ Before getting started, ensure that the following dependencies are installed:
1. **Go**
Download and install the latest version of Go by following the [official installation guide](https://go.dev/doc/install).

2. **Python and `sqlglot[rs]` package**
MyDuck Server depends on the `sqlglot[rs]` package, which can be installed using `pip3`. You have two options for installation:

- **Global installation** (use with caution as it may affect system packages):
```bash
pip3 install "sqlglot[rs]" --break-system-packages
```

- **Installation inside a virtual environment** (recommended):
```bash
mkdir -p ~/venv
python3 -m venv ~/venv/myduck
source ~/venv/myduck/bin/activate
pip3 install "sqlglot[rs]"
```

Make sure to activate the virtual environment when you work on the project:
```bash
source ~/venv/myduck/bin/activate
```
2. **Python and `sqlglot[rs]` package**
MyDuck Server depends on the `sqlglot[rs]` package, which can be installed using `pip3`. You have two options for installation:

- **Global installation** (use with caution as it may affect system packages):
```bash
pip3 install "sqlglot[rs]" --break-system-packages
```

- **Installation inside a virtual environment** (recommended):
```bash
mkdir -p ~/venv
python3 -m venv ~/venv/myduck
source ~/venv/myduck/bin/activate
pip3 install "sqlglot[rs]"
```

Make sure to activate the virtual environment when you work on the project:
```bash
source ~/venv/myduck/bin/activate
```

---

Expand Down

0 comments on commit a70223d

Please sign in to comment.