Skip to content

Commit

Permalink
ST6RI-765 Changed nodejs version in Jupyter install script
Browse files Browse the repository at this point in the history
Version 16.20.1 is not actually available for conda, so instead used
"<17" to get latest available version.
  • Loading branch information
seidewitz committed May 7, 2024
1 parent a10e490 commit 7336abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org.omg.sysml.jupyter.installer/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ java -version

echo "--- Step 3: Installing Jupyter SysML kernel and dependencies ---"
jupyter kernelspec remove sysml -f > /dev/null 2>&1 || true
conda install "jupyter-sysml-kernel=$SYSML_VERSION" python=3.* jupyterlab=3.* graphviz=2.* nodejs=16.20.2 -c conda-forge -y
conda install "jupyter-sysml-kernel=$SYSML_VERSION" python=3.* jupyterlab=3.* graphviz=2.* nodejs="<17" -c conda-forge -y

echo "--- Step 4: Installing JupyterLab SysML extension ---"
jupyter labextension uninstall @systems-modeling/jupyterlab-sysml > /dev/null 2>&1 || true
Expand Down

0 comments on commit 7336abd

Please sign in to comment.