From b502a22d978e0e9fec115fb813740942921b18f1 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 20 Apr 2026 00:19:07 +0000 Subject: [PATCH 1/2] fix: correct Intel Miniconda installer commands Co-authored-by: Ridgeway --- tools/conda-nodejs.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/conda-nodejs.mdx b/tools/conda-nodejs.mdx index 9879bba..0d5f803 100644 --- a/tools/conda-nodejs.mdx +++ b/tools/conda-nodejs.mdx @@ -36,7 +36,11 @@ This guide sets up [Miniconda](https://www.anaconda.com/docs/getting-started/min ```bash + # Apple Silicon: bash Miniconda3-latest-MacOSX-arm64.sh + + # Intel: + bash Miniconda3-latest-MacOSX-x86_64.sh ``` Accept the license, accept the default install location (`~/miniconda3`), and answer **yes** when asked whether to update your shell profile. @@ -71,7 +75,10 @@ This guide sets up [Miniconda](https://www.anaconda.com/docs/getting-started/min ```bash + # Remove whichever installer you downloaded above. rm ~/Miniconda3-latest-MacOSX-arm64.sh + # or + rm ~/Miniconda3-latest-MacOSX-x86_64.sh ``` From 368e2d306b7aa776cadead30039e945a8d2803c0 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 20 Apr 2026 00:43:48 +0000 Subject: [PATCH 2/2] fix(docs): avoid hard-coded repo path in conda guide Co-authored-by: Ridgeway --- tools/conda-nodejs.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/conda-nodejs.mdx b/tools/conda-nodejs.mdx index 0d5f803..78b816a 100644 --- a/tools/conda-nodejs.mdx +++ b/tools/conda-nodejs.mdx @@ -155,11 +155,13 @@ conda env create -f environment.yml ```bash - cd ~/repos/docs + cd /path/to/your/docs-repo conda activate docs-mintlify mint dev ``` + Replace `/path/to/your/docs-repo` with the path where you cloned this repository. Run `mint dev` from the directory that contains `docs.json`. + The preview runs at [http://localhost:3000](http://localhost:3000).