From 051f4841923a827a0e815b234b1c4e96544e5dc5 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Tue, 5 Mar 2024 21:33:08 -0500 Subject: [PATCH 1/2] Update nodejs installation --- docs/source/contributors/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/contributors/index.md b/docs/source/contributors/index.md index 6c7f7d223..12f325b51 100644 --- a/docs/source/contributors/index.md +++ b/docs/source/contributors/index.md @@ -35,7 +35,7 @@ Due to a compatibility issue with Webpack, Node.js 18.15.0 does not work with Ju After you have installed the prerequisites, create a new conda environment and activate it. ``` -conda create -n jupyter-ai python=3.11 nodejs=20 +conda create -n jupyter-ai python=3.11 conda-forge::nodejs=20 conda activate jupyter-ai ``` From 023a08c140d6c3d43fe331d95b6b9063c7b1536f Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Wed, 6 Mar 2024 15:33:25 -0500 Subject: [PATCH 2/2] Use conda-forge channel --- docs/source/contributors/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/contributors/index.md b/docs/source/contributors/index.md index 12f325b51..87618b828 100644 --- a/docs/source/contributors/index.md +++ b/docs/source/contributors/index.md @@ -35,7 +35,7 @@ Due to a compatibility issue with Webpack, Node.js 18.15.0 does not work with Ju After you have installed the prerequisites, create a new conda environment and activate it. ``` -conda create -n jupyter-ai python=3.11 conda-forge::nodejs=20 +conda create -n jupyter-ai -c conda-forge python=3.11 nodejs=20 conda activate jupyter-ai ```