I want to learn how to use Jupyter Notebook. So far, I have managed to download and install it (using pip), but I\'m having trouble opening it.
I am opening it by ty
I am having the same problem but solve it by using python 3.7 with four simple steps:
step 1:Installing python 3.7 in linux
sudo apt-get install python3.7
step 2: Installing python3-pip
sudo apt install python3-pip
step 3: installing jupyter
pip3 install jupyter
step 4:Strting jupyter notebook server
jupyter notebook
after starting server and going to localhost:888/tree it show option to create python 3 file after clicking on new button.