This commit is contained in:
Paul Gauthier 2024-06-06 10:37:16 -07:00
parent 9873db94f0
commit ef08b2fa1b
4 changed files with 27 additions and 16 deletions

View file

@ -56,5 +56,6 @@ Aider works well with GPT-4o, Claude 3 Opus, GPT-3.5 and supports [connecting to
## You are done!
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.

View file

@ -93,12 +93,18 @@ please let me know by opening a
[GitHub issue](https://github.com/paul-gauthier/aider/issues).
## Install development versions of aider
## Install the development version of aider
If you want to install the very latest development version of aider:
If you want the very latest development version of aider
you can install directly from GitHub:
* GitHub hosts the latest version, which is under active development:
* `python -m pip install git+https://github.com/paul-gauthier/aider.git`
* 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 .`
```
python -m pip install --upgrade git+https://github.com/paul-gauthier/aider.git
```
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 .
```