pip install -> python -m pip install

This commit is contained in:
Paul Gauthier 2024-08-08 13:17:42 -03:00
parent ce20f2b169
commit 82fa8accdd
3 changed files with 18 additions and 18 deletions

View file

@ -35,18 +35,18 @@ cog.out(open("aider/website/_includes/get-started.md").read())
You can get started quickly like this:
```
$ pip install aider-chat
python -m pip install aider-chat
# Change directory into a git repo
$ cd /to/your/git/repo
cd /to/your/git/repo
# Work with Claude 3.5 Sonnet on your repo
$ export ANTHROPIC_API_KEY=your-key-goes-here
$ aider
export ANTHROPIC_API_KEY=your-key-goes-here
aider
# Work with GPT-4o on your repo
$ export OPENAI_API_KEY=your-key-goes-here
$ aider
export OPENAI_API_KEY=your-key-goes-here
aider
```
<!--[[[end]]]-->

View file

@ -2,16 +2,16 @@
You can get started quickly like this:
```
$ pip install aider-chat
python -m pip install aider-chat
# Change directory into a git repo
$ cd /to/your/git/repo
cd /to/your/git/repo
# Work with Claude 3.5 Sonnet on your repo
$ export ANTHROPIC_API_KEY=your-key-goes-here
$ aider
export ANTHROPIC_API_KEY=your-key-goes-here
aider
# Work with GPT-4o on your repo
$ export OPENAI_API_KEY=your-key-goes-here
$ aider
export OPENAI_API_KEY=your-key-goes-here
aider
```

View file

@ -49,18 +49,18 @@ cog.out(open("aider/website/_includes/get-started.md").read())
You can get started quickly like this:
```
$ pip install aider-chat
python -m pip install aider-chat
# Change directory into a git repo
$ cd /to/your/git/repo
cd /to/your/git/repo
# Work with Claude 3.5 Sonnet on your repo
$ export ANTHROPIC_API_KEY=your-key-goes-here
$ aider
export ANTHROPIC_API_KEY=your-key-goes-here
aider
# Work with GPT-4o on your repo
$ export OPENAI_API_KEY=your-key-goes-here
$ aider
export OPENAI_API_KEY=your-key-goes-here
aider
```
<!-- NOOP -->