Skip to content

Commit dd93e99

Browse files
authored
Update contributing.md
1 parent 4527388 commit dd93e99

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

docs/docs/about/contributing.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,16 @@ We tag issues with the ["good first issue"](https://github.com/cocoindex-io/coco
2323
## Start hacking! Setting Up Development Environment
2424
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.
2525

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

28-
Run `rustup update` to ensure you're on the latest version.
28+
If you don't have Rust installed, run
29+
```bash
30+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
31+
```
32+
Already have Rust? Make sure it's up to date
33+
```bash
34+
rustup update
35+
```
2936
3037
- (Recommended) Setup Python virtual environment:
3138
```bash
@@ -34,7 +41,7 @@ Following the steps below to get cocoindex build on latest codebase locally - if
3441
Activate the virtual environment, before any installings / buildings / runnings:
3542
3643
```bash
37-
source .venv/bin/activate
44+
. .venv/bin/activate
3845
```
3946
4047
- Install maturin:

0 commit comments

Comments
 (0)