This commit is contained in:
Paul Gauthier 2024-12-15 09:16:42 -08:00
parent 0cc8c54152
commit b54f970e12
2 changed files with 6 additions and 9 deletions

View file

@ -13,6 +13,9 @@ description: How to install and get started pair programming with aider.
{% include get-started.md %} {% include get-started.md %}
If needed,
aider-install will automatically install a separate version of python3.12 to use with aider.
There are some [optional install steps](/docs/install/optional.html) you could consider. There are some [optional install steps](/docs/install/optional.html) you could consider.
See the [usage instructions](https://aider.chat/docs/usage.html) to start coding with aider. See the [usage instructions](https://aider.chat/docs/usage.html) to start coding with aider.
@ -26,7 +29,8 @@ uv tool install --python python3.12 aider-chat
``` ```
You can use uv to install aider with your existing python versions 3.8-3.13. You can use uv to install aider with your existing python versions 3.8-3.13.
If needed, it will automatically install python3.12 to use with aider. If needed,
uv will automatically install a separate version of python3.12 to use with aider.
Also see the Also see the
[docs on other methods for installing uv itself](https://docs.astral.sh/uv/getting-started/installation/). [docs on other methods for installing uv itself](https://docs.astral.sh/uv/getting-started/installation/).

View file

@ -107,12 +107,5 @@ If you want the very latest development version of aider
you can install directly from GitHub: you can install directly from GitHub:
``` ```
python -m pip install --upgrade git+https://github.com/Aider-AI/aider.git aider --install-main-branch
``` ```
If you've git cloned the aider repository already, you can install "live" from your local copy. This is mostly useful if you are developing aider and want your current modifications to take effect immediately.
```
python -m pip install -e .
```