Compare commits

...

2 Commits

Author SHA1 Message Date
Thibault Sottiaux
e4a6b36fba Update install.md 2025-10-20 16:25:16 -07:00
Thibault Sottiaux
15472114b1 docs: refresh install guidance 2025-10-20 14:52:06 -07:00

View File

@@ -4,7 +4,7 @@
| Requirement | Details |
| --------------------------- | --------------------------------------------------------------- |
| Operating systems | macOS 12+, Ubuntu 20.04+/Debian 10+, or Windows 11 **via WSL2** |
| Operating systems | macOS 12+, Ubuntu 20.04+/Debian 10+, or Windows 11 (native or via WSL2) |
| Git (optional, recommended) | 2.23+ for built-in PR helpers |
| RAM | 4-GB minimum (8-GB recommended) |
@@ -33,8 +33,10 @@ cargo run --bin codex -- "explain this codebase to me"
# After making changes, ensure the code is clean.
cargo fmt -- --config imports_granularity=Item
cargo clippy --tests
cargo clippy --all-features --tests
# or use `just clippy`
# Run the tests.
cargo test
# or use `just test`
```