Skip to content

Setting Up

mrzengel edited this page Jun 19, 2024 · 10 revisions
  • This is a page devoted to setting up the environment to run the code, specifically in editable mode, as the project is still in development. *

First, create a Conda environment with the necessary version of node:
conda create -n jupyterlab-ext --override-channels --strict-channel-priority -c conda-forge -c nodefaults jupyterlab=4 nodejs=20 git copier=9 jinja2-time

Then, activate the environment:
conda activate jupyterlab-ext

Install the python dependencies and point the local Jupyter lab to the extension build:
pip install -ve .
jupyter labextension develop --overwrite .
NOTE: These should obviously be run within the project directory.

Clone this wiki locally