- Ensure you have Python 3.10 or later installed. If not, download it from python.org.
- Git is also necessary download git.
- For cline an IDE is needed- I recommend using VS Code (e.g. portable version) get VS Code portable
aider is an AI-assisted coding tool working based on git and is a terminal tool. To install it, follow these steps:
Depending on your operating system, use the following commands to create and activate a virtual environment:
Windows (PowerShell):
python -m venv aider_env
./aider_env/Scripts/activate
Mac/Linux (bash/zsh):
python3 -m venv aider_env
source aider_env/bin/activate
Once the virtual environment is activated, install Aider using:
python -m pip install aider-install
aider-install
# add aider to your path
$env:PATH = "your-installation-path;$env:PATH" # hopefully this works for every OS
# if aider doesn't work after restarting your terminal maybe type this command again
# Change directory into your code base
cd /to/your/project
# initialize a local git repo (aider relies on git)
git init
# Work with GPT-4o-mini on your code
aider --model gpt-4o-mini --api-key openai=your-key-goes-here
# Or start via config & testing architect capabilities with a reasoning model (DeepSeek-R1):
aider --config .aider-deepseek.conf.yml # with deepseek-V3 & deepseek-R1 via GLHF-API
For the usage and command-overview in aider see:
Aider is highly versatile so you could use an .aider.conf.yaml
to configure certain things like "architect model", "editor-model", "command-line-behavior", etc.
see .aider.conf.yaml
and use it as an example and have a look here: aider-config
cline is a coding ai agent extension that can be easily set up in VS Code:
-
Installation:
- Open VS Code
- Press
Ctrl + Shift + X
or navigate toExtensions
(on the left) - type cline and install the extension
- after installation: click on the new cline icon on the left menu
-
Necessary settings:
- choose api provider: for us OpenAI
- add api-key
- go to settings and choose "GPT-4o-mini"
-
Lets go:
- start the extension in a fresh workspace, let it create and activate a venv and type your plans or what you want to build.
After installation, you can now use aider and cline directly in VS Code terminal or as IDE-extension. Enjoy the workshop! 🎉
See example prompts in examples.md
or be brave and test it with your own projects