How do I launch jupyter notebook from my terminal?

Trying to Launch jupyter notebook from terminal. I am currently on my terminal in the correct folder, and I have python 3.5 installed along with conda. But it is not launching.

3 Answers

Jupyter Notebooks allow you to open IPYNB notebooks in the location you prefer. I generally recommend the following:

  1. First create a folder at your preferred destination
  2. Then go to terminal/cmd prompt and navigate to your above made destination
  3. Once in the destination then type in jupyter notebook

This will then automatically trigger the browser and open the Home tab, you can start a new notebook with your preferred kernel, rename and save the notebook, which it saves at the location where you navigated through the terminal

This helps you organize your relevant/related notebooks in the same place in a structured manner.

Example shown below:

enter image description here

2

Just type the command in the terminal to open the jupyter notebook.

$ jupyter notebook 

In the terminal and in the folder where your ipynb file is located, enter:

jupyter notebook NAMEOFFILE.ipynb 

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like