Skip to content
Closed
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
26 changes: 25 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,31 @@ git clone https://github.com/Aider-AI/aider.git
cd aider
```

### Create a Virtual Environment
### Using uv (Recommended)

The easiest way to get started is using [uv](https://docs.astral.sh/uv/). `uv` handles Python versions, virtual environments, and dependencies automatically.

To start a development shell with all dependencies installed:

```
uv run --extra dev bash
# or
uv run --extra dev zsh
```

To run tests:

```
uv run --extra dev pytest
```

To run the CLI to test your changes:

```
uv run cecli
```

### Manual Setup: Create a Virtual Environment

It is recommended to create a virtual environment outside of the repository to keep your development environment isolated.

Expand Down