diff --git a/tools/conda-nodejs.mdx b/tools/conda-nodejs.mdx index 9879bba..78b816a 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 ``` @@ -148,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).