Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jupyter: No such kernel named python3

I want to run jupyter in pycharm, but encountered error: No such kernel named python3.

I only installed Anaconda(Python3 64bit version) and use this as the pycharm project interpreter.

enter image description here

......

enter image description here

Jupyter kernelspec list shows following: enter image description here

Appreciate any helps!!

like image 732
Lisa Avatar asked Jul 08 '16 00:07

Lisa


Video Answer


2 Answers

This solved issue for me:

 conda install nb_conda_kernels 
like image 184
VM47 Avatar answered Jan 04 '23 09:01

VM47


We've released versions of nb_conda, nb_conda_kernels and nb_anacondacloud through the official Anaconda conda repos that should resolve the issues you are seeing!

shell conda update nb_conda nb_conda_kernels nb_anacondacloud

As-installed kernel names that are eligible for being default (e.g. python2, python3, ir, etc.) will be maintained unmodified, so they should always appear there.

The downside is as many as three options for the current env, i.e. if you are in root, you will see Python 2 and Python [root] and Python [default], you can now reproducibly capture which environment your kernel should run against.

meta: https://github.com/Anaconda-Platform/anaconda-nb-extensions/issues/166

like image 22
bollwyvl Avatar answered Jan 04 '23 10:01

bollwyvl