diff --git a/README.md b/README.md index ef5a408..d32ea8a 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ micromamba create -n xeus-python-dev \ #### Build the kernel -This dependes on your kernel but will look smth like this: +This depends on your kernel but will look something like this: ```bash # path to your emscripten emsdk @@ -125,6 +125,22 @@ emcmake cmake \ emmake make -j8 install ``` +#### Build the JupyterLite site + +You will need to create a new environment with the dependencies to build the JupyterLite site. + +```bash +# create new environment +micromamba create -n xeus-lite-host \ + jupyterlite-core + +# activate the environment +micromamba activate xeus-lite-host + +# install jupyterlite_xeus via pip +python -m pip install jupyterlite-xeus +``` + When running `jupyter lite build` we pass the `prefix` options and point it to the local environment / prefix we just created: ```bash