From 01d4c2878a80a45c7deaaf0ce0ff9879676b30e0 Mon Sep 17 00:00:00 2001 From: Trevor Nederlof Date: Mon, 25 Sep 2023 21:39:23 +0000 Subject: [PATCH] Add jupyter command back in --- internal/jupyter/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jupyter/install.go b/internal/jupyter/install.go index a95aa3c..51f0edc 100644 --- a/internal/jupyter/install.go +++ b/internal/jupyter/install.go @@ -24,7 +24,7 @@ func InstallJupyter(pythonPath string) error { // Install various Jupyter related packages from PyPI func InstallJupyterAndComponents(pythonPath string) error { - licenseCommand := "PIP_ROOT_USER_ACTION=ignore " + pythonPath + " -m pip install --no-warn-script-location --disable-pip-version-check jupyterlab==3.6.5 rsp_jupyter rsconnect_jupyter workbench_jupyterlab==1.1.1" + licenseCommand := "PIP_ROOT_USER_ACTION=ignore " + pythonPath + " -m pip install --no-warn-script-location --disable-pip-version-check jupyter jupyterlab==3.6.5 rsp_jupyter rsconnect_jupyter workbench_jupyterlab==1.1.1" err := system.RunCommand(licenseCommand, true, 2, true) if err != nil { return fmt.Errorf("issue installing Jupyter with the command '%s': %w", licenseCommand, err)