Home > other >  Kedro using wrong conda environment
Kedro using wrong conda environment

Time:05-17

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?

CodePudding user response:

This is likely a problem with jupyter. I'd suggest trying to run jupyter notebook and understand if it is down to kedro or jupyter.

I remember facing something similar due to some jupyter problem but don't remember how I fixed it. I remember trying some solutions from this issue on jupyter.

CodePudding user response:

Try do pip install jupyterlab in your foo enviornment, Jupyter Kernel is a different concept and acts weird sometimes.

  • Related