I have created a conda environment called Foo
. After activating this environment I installed Kedro with pip
, since conda
was giving me a conflict. Even though I'm inside the Foo
environment, when I run:
kedro jupyter lab
It picks up the modules from my base
environment, not the Foo
environment. Any idea, why this is happening, and how I can change what modules my notebook detect?
Edit
By mangling with my code I found out that on the \AppData\Roaming\jupyter\kernels\kedro_project\kernel.json
it was calling the python from the base environment, not the Foo
environment. I changed it manually, but is there a mode automatic way of setting the \AppData\Roaming\jupyter\kernels\kedro_project\kernel.json
to use the current environment I'm on?