From ad4cf0e5ec9bea9e4658fa92e59111e98b758d57 Mon Sep 17 00:00:00 2001 From: Edward Frazer Date: Tue, 3 Mar 2026 18:35:29 -0800 Subject: [PATCH] fix: move package manager installs below native readme header --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 23b13b6052..00e4b82083 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Mac/Linux: curl -fsSL https://chatgpt.com/codex/install.sh | sh
Windows: powershell -c "irm https://chatgpt.com/codex/install.ps1|iex"
or npm i -g @openai/codex
or brew install --cask codex

+

Mac/Linux: curl -fsSL https://chatgpt.com/codex/install.sh | sh
Windows: powershell -c "irm https://chatgpt.com/codex/install.ps1|iex"

Codex CLI is a coding agent from OpenAI that runs locally on your computer.

Codex CLI splash @@ -26,14 +26,8 @@ curl -fsSL https://chatgpt.com/codex/install.sh | sh powershell -c "irm https://chatgpt.com/codex/install.ps1|iex" ``` -If you prefer a package manager, you can also install with npm or Homebrew: - -```shell -# Install using npm -npm install -g @openai/codex -# Install using Homebrew -brew install --cask codex -``` +> [!NOTE] +> If you prefer a package manager, you can also install with `npm install -g @openai/codex` or `brew install --cask codex`. Then simply run `codex` to get started.