efedoganay
efedoganay

Reputation: 133

Jupyter Notebook Python3 Support

I want to be able to use Python3 on jupyter notebook and my operating system is Linux Ubuntu 18.04.

Issue is that, although I followed the certain steps about creating virtual environment, installing the jupyter via pip, etc., after I open Jupyter on Chrome browser, I am unable to create a Python3 notebook because there is only Python2 option from the dropdown menu.

Any suggestions on how to fix that?

Upvotes: 1

Views: 57

Answers (1)

Bozkurthan
Bozkurthan

Reputation: 141

Try it with:

sudo pip3 install jupyter

Upvotes: 1

Related Questions