Skip to content

Commit 3d9583c

Browse files
authored
docs: fix bootstrap instructions in contributor guide (#1618)
* docs: add missing cd step in contributor guide bootstrap * docs: fix maturin develop flag typo (-uv -> --uv)
1 parent 4906d39 commit 3d9583c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/source/contributor-guide/introduction.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Bootstrap:
4747
```shell
4848
# fetch this repo
4949
git clone git@github.com:apache/datafusion-python.git
50+
# cd to the repo root
51+
cd datafusion-python/
5052
# create the virtual environment
5153
uv sync --dev --no-install-package datafusion
5254
# activate the environment
@@ -64,7 +66,7 @@ Whenever rust code changes (your changes or via `git pull`):
6466

6567
```shell
6668
# make sure you activate the venv using "source .venv/bin/activate" first
67-
maturin develop -uv
69+
maturin develop --uv
6870
python -m pytest
6971
```
7072

0 commit comments

Comments
 (0)