
Now let’s dive in to our list of 28 (and counting!) Jupyter notebook tips! Jupyter is quite extensible, supports many programming languages and is easily hosted on your computer or on almost any server - you only need to have ssh or http access. Project Jupyter was born out of the IPython project as the project evolved to become a notebook that could support multiple languages – hence its historical name as the IPython notebook.

When working with Python in Jupyter, the IPython kernel is used, which gives us some handy access to IPython features from within our Jupyter notebooks (more on that later!) The name Jupyter is an indirect acronyum of the three core languages it was designed for: JUlia, PYThon, and R and is inspired by the planet Jupiter. We’re going to show you 28 tips and tricks to make your life working with Jupyter easier.Īs any power user knows, keyboard shortcuts will save you lots of time. Jupyter stores a list of keybord shortcuts under the menu at the top: Help > Keyboard Shortcuts, or by pressing H in command mode (more on that later). It’s worth checking this each time you update Jupyter, as more shortcuts are added all the time.Īnother way to access keyboard shortcuts, and a handy way to learn them is to use the command palette: Cmd + Shift + P (or Ctrl + Shift + P on Linux and Windows). Vector magic 1.18 %2b sk patch mac update# M to change the current cell to Markdown, Y to change it back to code.A to insert a new cell above the current cell, B to insert a new cell below.Esc will take you into command mode where you can navigate around your notebook with arrow keys.The functionality is similar to Spotlight search on a Mac, and once you start using it you’ll wonder how you lived without it! This dialog box helps you run any command by name – useful if you don’t know the keyboard shortcut for an action or if what you want to do does not have a keyboard shortcut. D + D (press the key twice) to delete the current cell.Enter will take you from command mode back into edit mode for the given cell.

