ai:aider:install-aider-from-source
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ai:aider:install-aider-from-source [2024/08/14 05:33] – removed - external edit (Unknown date) 127.0.0.1 | ai:aider:install-aider-from-source [2025/06/17 12:08] (current) – odefta | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Install Aider Chat From Source ====== | ||
+ | |||
+ | < | ||
+ | git clone https:// | ||
+ | </ | ||
+ | |||
+ | In the local aider folder, execute: | ||
+ | < | ||
+ | python -m venv .venv | ||
+ | |||
+ | source .venv/ | ||
+ | .venv\\scripts\\activate | ||
+ | |||
+ | </ | ||
+ | |||
+ | Then: | ||
+ | < | ||
+ | pip install -e . | ||
+ | </ | ||
+ | |||
+ | To upgrade: | ||
+ | < | ||
+ | pip install --upgrade . | ||
+ | |||
+ | For venv: | ||
+ | .venv\Scripts\python.exe -m pip install --upgrade aider-chat | ||
+ | </ | ||
+ | |||
+ | Alternatively you can try with: | ||
+ | < | ||
+ | py -3.12 -m venv venv | ||
+ | venv\Scripts\activate | ||
+ | python -m pip install -e . | ||
+ | </ | ||