RubberDuckProducer
RubberDuckProducer

Reputation: 247

pip install environment_kernels Not Working for Switching Conda Environment

Even after I install the kernal package by calling pip install environment_kernels in anaconda prompt, I'm still not able to change the environment in my Jupyter notebook.

This is how it looks like on the top right corner of a ipynb file when I click into

enter image description here

And here's what shows up when I click Kernel tab to try to switch to another environment.

enter image description here

And I'm honestly so confused why I don't even have a conda tab on the main page. enter image description here

Can somebody help me out on this?

Upvotes: 0

Views: 162

Answers (1)

Rock
Rock

Reputation: 81

you could try to set the display-name, then you can see it in change kernal

python -m ipykernel install --user --name yourenvnamehere --display-name "the display name you want there"

Upvotes: 1

Related Questions