Jupyter Notebook - Python 3 kernel

Stumbler

I have Jupyter Notebook installed and working. However it only has python 2 kernel.

notebook kernel

I tried reinstalling Anaconda with Python 3.6 version of python, which worked fine (apart from deleting all my environments, etc.), but no change in relation to the kernels available for Jupyter.

I have tried installing jupyter using pip (the solution to this question), but I get the error message Requirement already satisfied: jupyter in c:\users\username\anaconda2\lib\site-packages

Any ideas?

john loomis

Are you using pip3 install jupyter?

a more robust solution would be to isolate your environments with something like pipenv.

pip install pipenv

pipenv install --three

this will install a virtual environment with python3

install packages

pipenv install jupyter

activate the env

pipenv shell

start the notebook

jupyter notebook

You should be able to see the python3 option now.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Jupyter notebook with Python 2 and Python3 Kernel

From Java

remove kernel on jupyter notebook

From Dev

Jupyter Notebook with Matlab kernel

From Dev

Jupyter notebook kernel not connecting

From Dev

Anaconda: Python 3 and 2 in IPython/Jupyter Notebook

From Dev

Python 3.x : Jupyter Notebook and Pandas

From Dev

Kernel loading forever in jupyter notebook

From Dev

Kernel loading forever in jupyter notebook

From Dev

Point Kernel for Jupyter Notebook at Matlab

From Dev

In jupyter notebook the kernel dies immediately

From Dev

Kernel Error in R Notebook using Jupyter Notebook

From Dev

jupyter: No such kernel named python3

From Dev

I am using jupyter notebook, ipython 3 on windows. Whenever i am starting my python 3, i get the "Kernel Dead" message

From Dev

How to switch to python 2.7 from python 3- jupyter notebook

From Java

How to connect a Jupyter Notebook to a Spyder kernel?

From Dev

Is it possible to run a pypy kernel in the Jupyter notebook?

From Dev

Losing jupyter notebook ssh connection kills kernel

From Dev

Jupyter notebook: connection to kernel restarts infinitely

From Dev

Java kernel cannot connect to the jupyter notebook

From Dev

Kernel dead in jupyter notebook, matplotlib seems not to work

From Dev

Jupyter Notebook with Apache Spark (Kernel Error)

From Dev

Jupyter notebook kernel does not want to interrupt

From Dev

How to change jupyter kernel from Python 2 to python 3?

From Dev

What does `exit` keyword do in Python3 with Jupyter Notebook?

From Dev

Rotate interactively a 3D plot in python - matplotlib - Jupyter Notebook

From Dev

Kernel Error in IJulia notebook--Failed to Start the Kernel in Jupyter

From Dev

How to debug dying Jupyter Python3 kernel?

From Java

Jupyter Notebook with Python 3.8 - NotImplementedError

From Dev

Jupyter Notebook Broken by Python 3.5

Related Related

  1. 1

    Jupyter notebook with Python 2 and Python3 Kernel

  2. 2

    remove kernel on jupyter notebook

  3. 3

    Jupyter Notebook with Matlab kernel

  4. 4

    Jupyter notebook kernel not connecting

  5. 5

    Anaconda: Python 3 and 2 in IPython/Jupyter Notebook

  6. 6

    Python 3.x : Jupyter Notebook and Pandas

  7. 7

    Kernel loading forever in jupyter notebook

  8. 8

    Kernel loading forever in jupyter notebook

  9. 9

    Point Kernel for Jupyter Notebook at Matlab

  10. 10

    In jupyter notebook the kernel dies immediately

  11. 11

    Kernel Error in R Notebook using Jupyter Notebook

  12. 12

    jupyter: No such kernel named python3

  13. 13

    I am using jupyter notebook, ipython 3 on windows. Whenever i am starting my python 3, i get the "Kernel Dead" message

  14. 14

    How to switch to python 2.7 from python 3- jupyter notebook

  15. 15

    How to connect a Jupyter Notebook to a Spyder kernel?

  16. 16

    Is it possible to run a pypy kernel in the Jupyter notebook?

  17. 17

    Losing jupyter notebook ssh connection kills kernel

  18. 18

    Jupyter notebook: connection to kernel restarts infinitely

  19. 19

    Java kernel cannot connect to the jupyter notebook

  20. 20

    Kernel dead in jupyter notebook, matplotlib seems not to work

  21. 21

    Jupyter Notebook with Apache Spark (Kernel Error)

  22. 22

    Jupyter notebook kernel does not want to interrupt

  23. 23

    How to change jupyter kernel from Python 2 to python 3?

  24. 24

    What does `exit` keyword do in Python3 with Jupyter Notebook?

  25. 25

    Rotate interactively a 3D plot in python - matplotlib - Jupyter Notebook

  26. 26

    Kernel Error in IJulia notebook--Failed to Start the Kernel in Jupyter

  27. 27

    How to debug dying Jupyter Python3 kernel?

  28. 28

    Jupyter Notebook with Python 3.8 - NotImplementedError

  29. 29

    Jupyter Notebook Broken by Python 3.5

HotTag

Archive