-
Notifications
You must be signed in to change notification settings - Fork 524
Description
I was navigating through the documentation and the code but I couldn't find an answer to the following.
My group has a system where we have a jupyter server
running from where users can launch some voila applications, for each app, we set the kernel that the app has to use and it is then launched.
The problem surges when there's a tool that needs a new labextension which is not installed in the system library, causing the no version of module xxx is registered
.
By running jupyter --path
I know that the registered extensions are located at:
/home/username/.local/share/jupyter
/usr/local/share/jupyter
/usr/share/jupyter
I know I can export JUPYTER_PATH=
var to add the folder of the venv that I'm using, but it won't solve my issue because the server is already running, I cannot change that...
Is there a way to set this path in a different way? or is there a way to use the cdn
?