Eric Charles
Eric Charles
> It's actually what I am doing, but it's not working, it doesn't update the selected notebook. Any ideas or tip on how to force the update? Thanks in advance!...
@vipulsharma144 current code assume the jupyter context is created once and remains as is with the given server url. It should be possible to change that, adding more deps here...
@jkfitzsimons
Thx for your interest and kind words. I have tested a Cell with your config with latest main and it works as expected (the given default kernel name is used)....
That is great news. Kernel connection and management is a whole area and more work needs to be done to have better control. Happy that you are unblocked.
Thx for your interest @nsaravanas. I would say there are 2 main impediments for now: 1. Some commands in the Makefile (and package.json?) are bash/shell commands which will not work...
Makefile should be removed and replaced by their equivalent cross platform: - `find ...` -> `rimraf`. - `kill` -> `fkill`
VS Code devcontainers is now supported with https://github.com/datalayer/jupyter-ui/commit/0ee4a204a42879dd18744a726026c7dc501ae395 You can develop from a Docker container , see the doc on https://jupyter-ui.datalayer.tech/docs/develop/setup/devcontainers
> Makefile should be removed and replaced by their equivalent cross platform: > find ... -> rimraf. > kill -> fkill The [docs](https://jupyter-ui.datalayer.tech/docs/develop/setup/conda) now recommends installation of [Cygwin](https://www.cygwin.com).
LSP has been added recently (a few weeks) to latest JupyterLab alpha release. I had a quick look and was not able to make it work in vanilla jupyterlab. I...