From abcb457b20367ee56e27602e3553bb4bd6a17312 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 27 Oct 2023 21:36:30 -0700 Subject: [PATCH] Remove homebrew suggestion for the moment, refs #315 !stable-docs --- README.md | 4 ++-- docs/index.md | 6 +++--- docs/setup.md | 4 ---- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 57aeace5..62b107ca 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,9 @@ Install this tool using `pip`: ```bash pip install llm ``` -Or using [Homebrew](https://brew.sh/): +Or using [pipx](https://pipxproject.github.io/pipx/): ```bash -brew install llm +pipx install llm ``` [Detailed installation instructions](https://llm.datasette.io/en/stable/setup.html). diff --git a/docs/index.md b/docs/index.md index c443013b..89fcd708 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,14 +24,14 @@ For more check out [the llm tag](https://simonwillison.net/tags/llm/) on my blog ## Quick start -First, install LLM using `pip` or Homebrew: +First, install LLM using `pip`: ```bash pip install llm ``` -Or with Homebrew: +Or with [pipx](https://pipxproject.github.io/pipx/) (recommended, as then it won't clash with any other installed packages): ```bash -brew install llm +pipx install llm ``` If you have an [OpenAI API key](https://platform.openai.com/account/api-keys) key you can run this: ```bash diff --git a/docs/setup.md b/docs/setup.md index 1c8ebd1c..cffb7dfd 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -10,10 +10,6 @@ Or using [pipx](https://pypa.github.io/pipx/): ```bash pipx install llm ``` -Or using [Homebrew](https://brew.sh/): -```bash -brew install llm -``` ## Upgrading to the latest version