Reputation: 247
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
And here's what shows up when I click Kernel tab to try to switch to another environment.
And I'm honestly so confused why I don't even have a conda tab on the main page.
Can somebody help me out on this?
Upvotes: 0
Views: 162
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