Skip to content
Merged
Changes from 1 commit
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
8 changes: 5 additions & 3 deletions docs/docs/about/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,17 @@ We tag issues with the ["good first issue"](https://github.com/cocoindex-io/coco
Following the steps below to get cocoindex build on latest codebase locally - if you are making changes to cocoindex funcionality and want to test it out.

- Install Rust toolchain: [docs](https://rust-lang.org/tools/install)

Run `rustup update` to ensure you're on the latest version.

- (Optional) Setup Python virtual environment:
- (Recommended) Setup Python virtual environment:
```bash
virtualenv --python=$(which python3.12) .venv
python3 -m venv .venv
```
Activate the virtual environment, before any installings / buildings / runnings:

```bash
. .venv/bin/activate
source .venv/bin/activate
```

- Install maturin:
Expand Down