You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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 ?
The text was updated successfully, but these errors were encountered:
It's not possible to set the lab extension paths dynamically.
What we can do is to relax this fullLabextensionsUrl to make it configurable. Then you can host your extension assets independently of voila and update them without touching voila server
I need this feature, and I could start a PR.
I thought that fullLabextensionsUrl would be the only entry point used afterwards to handle the extensions but not, to get the metadata from the extensions there's another call to the filesystem
...
To propose a generic solution I was thinking on adapting or adding gcp method to work directly with the server instead of the filesystem, in which scenario I would have to add some directory listing methods to the server and adapt the logic.
What do you think about it?
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: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
?The text was updated successfully, but these errors were encountered: