User Tools

Site Tools


ai:aider:install-aider-from-source

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ai:aider:install-aider-from-source [2024/08/14 05:33] – removed - external edit (Unknown date) 127.0.0.1ai:aider:install-aider-from-source [2024/08/23 03:18] (current) odefta
Line 1: Line 1:
 +====== Install Aider Chat From Source ======
 +
 +<code>
 +git clone https://github.com/paul-gauthier/aider.git
 +</code>
 +
 +In the local aider folder, execute:
 +<code>
 +python -m venv .venv
 +
 +source .venv/bin/activate   # For macOS/Linux
 +.venv\\scripts\\activate      # For Windows
 +
 +</code>
 +
 +Then:
 +<code>
 +pip install -e .
 +</code>
 +
 +To upgrade:
 +<code>
 +pip install --upgrade .
 +
 +For venv:
 +.venv\Scripts\python.exe -m pip install --upgrade aider-chat
 +</code>