Jupyter can't find env Python kernels
See original GitHub issueI have two envs (+ the default one) that I want to use inside the default Jupyter notebook. If my understanding is correct, that projet should allow that but I can’t see the kernels.
$ conda env list
# conda environments:
#
cadnano C:\Users\hadim\Anaconda3\envs\cadnano
cadnano_old C:\Users\hadim\Anaconda3\envs\cadnano_old
root * C:\Users\hadim\Anaconda3
$ jupyter notebook
[I 12:14:28.044 NotebookApp] [nb_conda_kernels] enabled, 2 kernels found
[I 12:14:28.476 NotebookApp] [nb_conda] enabled
[I 12:14:28.583 NotebookApp] \u2713 nbpresent HTML export ENABLED
[W 12:14:28.583 NotebookApp] \u2717 nbpresent PDF export DISABLED: No module named 'nbbrowserpdf'
[I 12:14:28.685 NotebookApp] [nb_anacondacloud] enabled
[I 12:14:28.829 NotebookApp] Serving notebooks from local directory: C:\Program Files\Git
[I 12:14:28.829 NotebookApp] 0 active kernels
[I 12:14:28.829 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/
[I 12:14:28.829 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
Then :
Should not I see cadnano
and cadnano_old
as kernels ?
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (7 by maintainers)
Top Results From Across the Web
Conda environments not showing up in Jupyter Notebook
Notice that this path is located within the test_env directory. If you create a new environment, install jupyter, activate it, and list the...
Read more >Get Your Conda Environment to Show in Jupyter Notebooks
1. First, install nb_conda_kernels in your base environment. Once this is installed any notebook running from the base environment will ...
Read more >Kernel does not start in jupyter notebook when using other ...
I created a new environment called 'idp' with Intel optimized libraries, but when I run 'jupyter notebook' , The kernel does never start...
Read more >What to do when things go wrong - The Jupyter Notebook
There's a special fallback for the Python kernel: if it doesn't find a real kernelspec, but it can import the ipykernel package, it...
Read more >How To Setup Jupyter Notebook in VS Code (w/ Virtual Env ...
Step 1. Create project folder · Step 2. Create, activate & select your virtual environment · Step 3. Install ipykernel · Step 4....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
ahah !
Of course you need an
ipykernel
to use the env as a kernel.It’s working now after
conda install ipykernel
.Maybe you should add a quick note on the README about that.