You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Codex CLI is a lightweight coding agent from OpenAI that runs locally in your terminal. It can help you with coding tasks, understand your codebase, run commands, and assist with development workflows.
19
+
Codex CLI is a local, terminal-based coding agent from OpenAI that helps developers explore codebases, generate changes, and run commands using natural language. It’s useful for tasks such as understanding unfamiliar projects, refactoring code, and accelerating development workflows directly from the command line.
20
20
21
-
It supports multiple operating systems, including Arm-based Linux distributions and macOS.
21
+
Codex CLI supports multiple operating systems, including Arm-based Linux distributions and macOS. By integrating AI assistance directly into command-line workflows, it reduces context switching during development.
22
22
23
23
This guide explains how to install Codex CLI on macOS and Arm Linux.
24
24
@@ -28,11 +28,9 @@ You need an OpenAI account to use Codex CLI. You can either sign in with your [C
28
28
29
29
Codex CLI requires Node.js 18 or later.
30
30
31
-
This guide explains how to install Codex CLI on macOS and Arm Linux.
32
-
33
31
## How do I download and install Codex CLI?
34
32
35
-
On most systems, you should install codex using `npm`. On macOS Homebrew can also be used.
33
+
On most systems, install Codex CLI using npm. On macOS, there is also the option for you to use Homebrew.
36
34
37
35
### How do I use npm to install Codex CLI?
38
36
@@ -66,13 +64,15 @@ Install the required packages on Ubuntu/Debian systems:
66
64
sudo apt update && sudo apt install -y curl
67
65
```
68
66
69
-
If you are not using Ubuntu/Debian use your package manager to install curl.
67
+
If you're not using Ubuntu/Debian, use your package manager to install curl.
70
68
71
69
### How do I install Node.js on Arm Linux?
72
70
71
+
{{% notice Note %}}If you already have Node.js 18 or later installed, you can skip this section.{{% /notice %}}
72
+
73
73
Codex CLI requires Node.js version 18 or higher. The easiest way to install Node.js on Arm Linux is using the NodeSource repository.
74
74
75
-
Download and run the Node.js setup script (example shown for Node.js 22.x):
75
+
Download and run the Node.js setup script. For example, for Node.js 22.x:
0 commit comments