From 3ebc4b0659619a2438b6851610dc212ce4dbd328 Mon Sep 17 00:00:00 2001 From: Tim Kreuzer <t.kreuzer@fz-juelich.de> Date: Thu, 14 Nov 2024 09:51:58 +0100 Subject: [PATCH] add extension uninstall documentation --- docs/users/jupyterlab/4.2/index.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/users/jupyterlab/4.2/index.md b/docs/users/jupyterlab/4.2/index.md index aaf4a23..dca5075 100644 --- a/docs/users/jupyterlab/4.2/index.md +++ b/docs/users/jupyterlab/4.2/index.md @@ -102,7 +102,13 @@ If something's not working as expected, you may find additional information in t <img src="../../../images/jupyterview.png" alt="Kernels" style="width: 70%;"> </div> - +## Uninstall your own Extensions +To remove the previously installed extension, you have to set `PYTHONNOUSERSITE` to `0`. Otherwise pip will not look into the locally installed packages. +``` +source /tmp/custom/load_jupyter_version.sh # This loads the jupyter environment +PYTHONNOUSERSITE=0 pip uninstall jupyterview +``` +After a restart of your JupyterLab, the extension will be fully removed. ## Proxies -- GitLab