From e36394018549f392632389d242d04155f2c0f11b Mon Sep 17 00:00:00 2001 From: Koustubh Rao <88176320+YKoustubhRao@users.noreply.github.com> Date: Wed, 27 Aug 2025 18:34:56 +0530 Subject: [PATCH] Update development guide in README.md Missing # cd to the repo root cd datafusion-python/ --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5b7a43317..a9f03be8d 100644 --- a/README.md +++ b/README.md @@ -227,6 +227,8 @@ and for `uv run` commands the additional parameter `--no-project` ```bash # fetch this repo git clone git@github.com:apache/datafusion-python.git +# cd to the repo root +cd datafusion-python/ # create the virtual enviornment uv sync --dev --no-install-package datafusion # activate the environment @@ -238,6 +240,8 @@ Bootstrap (`pip`): ```bash # fetch this repo git clone git@github.com:apache/datafusion-python.git +# cd to the repo root +cd datafusion-python/ # prepare development environment (used to build wheel / install in development) python3 -m venv .venv # activate the venv