From b23d45217ee13bc82913cbed2512c8f9bd50c2d7 Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Mon, 2 Feb 2026 15:12:25 +0100 Subject: [PATCH 1/2] Update macOS Processing CLI instructions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace previous instructions that required navigating into the .app bundle and running the binary with a simpler `processing --help` example. Clarify that the CLI is not installed by default on macOS and must be added via Tools → Install "processing" from the Processing app, while Windows and Linux typically have Processing on the PATH by default. --- content/pages/environment/index.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/pages/environment/index.mdx b/content/pages/environment/index.mdx index 5ac8d093..e78b1700 100644 --- a/content/pages/environment/index.mdx +++ b/content/pages/environment/index.mdx @@ -584,8 +584,7 @@ processing --help *macOS* ``` -cd /Applications/Processing.app/Contents/MacOS -./Processing --help +processing --help ``` -_**Note:** On macOS, the executable lives inside the `.app` bundle, so that's why there is a command to navigate to it's folder first. On Windows and Linux, Processing is typically added to your PATH by default, so no navigation is needed._ +_**Note:** On macOS, the CLI is not installed by default, run `tools -> install "processing" from Processing. On Windows and Linux, Processing is typically added to your PATH by default, so no installation is needed._ From 0f56595c64e0ace0c72bafab7879b638fa9fa584 Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Mon, 2 Feb 2026 17:52:34 +0100 Subject: [PATCH 2/2] Change platform mentions from 'Linux' to 'macOS/Linux' Updated platform references in CLI instructions. --- content/pages/environment/index.mdx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/content/pages/environment/index.mdx b/content/pages/environment/index.mdx index e78b1700..e19f45a5 100644 --- a/content/pages/environment/index.mdx +++ b/content/pages/environment/index.mdx @@ -577,12 +577,7 @@ Make sure Processing is installed, then run the help command to see all availabl processing --help | more ``` -*Linux* -``` -processing --help -``` - -*macOS* +*macOS/Linux* ``` processing --help ```