$ jupyter-notebook
$pip install jupyter --user installed the jupyter-note book.
But I want python3 version.
I tried to install jupyter using following command.
$ pip3 install jupyter --user
Traceback (most recent call last):
To solve this problem do the following.
Remove the installed jupyter using:
$sudo apt-get uninstall jupyter (and hit 'y' to confirm)
or,
$pip uninstall jupyter
and update using:
$sudo apt-get update
Now do the following:
$sudo apt-get install jupyter-notebook
Now, you can open the jupyter-notebook.
Traceback (most recent call last):
File "/usr/local/bin/jupyter-notebook", line 7, in <module>
from notebook.notebookapp import main
ModuleNotFoundError: No module named 'notebook'
But I want python3 version.
I tried to install jupyter using following command.
$ pip3 install jupyter --user
Traceback (most recent call last):
File "/usr/local/bin/pip3", line 7, in <module>
from pip._internal import main
ModuleNotFoundError: No module named 'pip._internal'
Remove the installed jupyter using:
$sudo apt-get uninstall jupyter (and hit 'y' to confirm)
or,
$pip uninstall jupyter
and update using:
$sudo apt-get update
Now do the following:
$sudo apt-get install jupyter-notebook
Now, you can open the jupyter-notebook.
No comments:
Post a Comment