Dan Baker

Results 28 comments of Dan Baker

> problem solved by installing these two packages form synaptic https://imgur.com/xFp1xq7.png then follow the instructions of this site without modifying them > actually helped me!. > In case the screenshots...

@nazzacode There is a PR #259 to add a Typescript kernel. I believe it works. Give it a try if you have a chance.

@garbas and I tried adding the `bash` package to the runtime packages for the bash kernel but this produces other strange errors. When a cell is run, the operation does...

Also discovered that running the old kernel without bash in the runtime packages in a `nix develop` environment causes similar issues.

Confirmed that if I remove `--set JUPYTER_PATH ${kernelsString requestedKernels} \` from `mkJupyterlabInstance` then the kernel directories are removed from `data`. Nothing else appears to have changed. ```shell $ ./result/bin/jupyter --paths...

Found that you can also set `JUPYTER_CONFIG_PATH` for additional `config` directories to search, but that only adds new directories. The [documentation](https://docs.jupyter.org/en/latest/use/jupyter-directories.html) mentions it will add `/usr/local/etc/jupyter/` and `/etc/jupyter/` but no...

Running the following will give you information about the jupyter lab paths. ```shell $ ./result/bin/jupyter-lab paths Application directory: /nix/store/valapf0sw07af295nnr2jf4m6m73nnpc-python3.9-jupyterlab-3.4.3/share/jupyter/lab User Settings directory: /home/bakerdn/.jupyter/lab/user-settings Workspaces directory: /home/bakerdn/.jupyter/lab/workspaces ``` These paths can...

The command `jupyter --paths --debug` can show all the env variables tied to jupyter. ```shell $ ./result/bin/jupyter --paths --debug JUPYTER_PREFER_ENV_PATH is not set, making the user-level path preferred over the...

The documentation on [jupyter_core](https://jupyter-core.readthedocs.io/en/latest/paths.html#module-jupyter_core.paths) shows the Python API for location different Jupyter paths. I used the python environment in one of the available kernels we built as such: ```shell $...

Current state of `jupyter` specific paths. Running `jupyter --paths --debug` gives extra information about paths. - [ ] `JUPYTER_PREFER_ENV_PATH` is not set. This prefers user-level paths over env-level paths. We...