Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/source/contributor-guide/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ Bootstrap:
```shell
# fetch this repo
git clone git@github.com:apache/datafusion-python.git
# cd to the repo root
cd datafusion-python/
# create the virtual environment
uv sync --dev --no-install-package datafusion
# activate the environment
Expand All @@ -64,7 +66,7 @@ Whenever rust code changes (your changes or via `git pull`):

```shell
# make sure you activate the venv using "source .venv/bin/activate" first
maturin develop -uv
maturin develop --uv
python -m pytest
```

Expand Down