Replies: 1 comment
-
Hi @Lasica, thanks for opening this conversation! We are now emphasizing I'm converting this to a discussion for now. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
Some of the additional options in installing kernels could be useful in some contexts. The
ipykernel
module does this well (seepython -m ipykernel install --help
.Context
I encountered an issue when working with pyspark, that it needs to have environment variables correctly pointing to the correct python. Setting those envs in jupyter is possible and there is support for that via
ipykernel install --env ...
. I thought that kedro uses it under the hood to register its own kernel with some edits, but looking at the code it uses_create_kernel
custom method that also uses ipykernel install.Possible Implementation
Pass click extra arguments to the:
kedro/kedro/framework/cli/jupyter.py
Lines 158 to 169 in 00789fa
Beta Was this translation helpful? Give feedback.
All reactions