diff --git a/aider/website/docs/install.md b/aider/website/docs/install.md index 024c76f34..0ebf1d2e2 100644 --- a/aider/website/docs/install.md +++ b/aider/website/docs/install.md @@ -28,12 +28,6 @@ These one-liners will install aider, along with python 3.12 if needed. They are based on the [uv installers](https://docs.astral.sh/uv/getting-started/installation/). -#### Windows - -```powershell -powershell -ExecutionPolicy ByPass -c "irm https://aider.chat/install.ps1 | iex" -``` - #### Mac & Linux Use curl to download the script and execute it with sh: @@ -48,6 +42,12 @@ If your system doesn't have curl, you can use wget: wget -qO- https://aider.chat/install.sh | sh ``` +#### Windows + +```powershell +powershell -ExecutionPolicy ByPass -c "irm https://aider.chat/install.ps1 | iex" +``` + ## Install with uv @@ -55,7 +55,7 @@ You can install aider with uv: ```bash python -m pip install uv # If you need to install uv -uv tool install --force --python python3.12 aider-chat@latest +uv tool install --force --python python3.12 --with pip aider-chat@latest ``` This will install uv using your existing python version 3.8-3.13, diff --git a/aider/website/install.ps1 b/aider/website/install.ps1 index 116b5e118..dcb2376e8 100644 --- a/aider/website/install.ps1 +++ b/aider/website/install.ps1 @@ -425,7 +425,7 @@ function Invoke-Installer($artifacts, $platforms) { Write-Information "" Write-Information "Installing aider-chat..." - & "$dest_dir\uv.exe" tool install --force --python python3.12 aider-chat@latest + & "$dest_dir\uv.exe" tool install --force --python python3.12 --with pip aider-chat@latest if (-not $NoModifyPath) { Add-Ci-Path $dest_dir diff --git a/aider/website/install.sh b/aider/website/install.sh index e0e234826..187d706ef 100644 --- a/aider/website/install.sh +++ b/aider/website/install.sh @@ -1178,7 +1178,7 @@ install() { say "Installing aider..." say "" # Install aider-chat using the newly installed uv - ensure "${_install_dir}/uv" tool install --force --python python3.12 aider-chat@latest + ensure "${_install_dir}/uv" tool install --force --python python3.12 --with pip aider-chat@latest # Avoid modifying the users PATH if they are managing their PATH manually case :$PATH: