From 17c13da008030795d55cd5ed9a966fb53c2756d5 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 8 Aug 2024 13:23:47 -0300 Subject: [PATCH] copy --- .../docs/troubleshooting/aider-not-found.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 aider/website/docs/troubleshooting/aider-not-found.md diff --git a/aider/website/docs/troubleshooting/aider-not-found.md b/aider/website/docs/troubleshooting/aider-not-found.md new file mode 100644 index 000000000..32db7e306 --- /dev/null +++ b/aider/website/docs/troubleshooting/aider-not-found.md @@ -0,0 +1,25 @@ +--- +parent: Troubleshooting +nav_order: 28 +--- + +# Aider not found + +In some environments the `aider` command may not be available +on your shell path. +This can occur because of permissions/security settings in your OS, +and often happens to Windows users. + +You may see an error message like this: + +> aider: The term 'aider' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. + +Below is the most fail safe way to install and run aider in these situations: + +``` +python -m pip install aider +python -m aider +``` + + +{% include venv-pipx.md %}