🌐
GitHub
gist.github.com › ocoyawale › 54d92fd4bf92508a2a6e482b5fa480fd
A gallery of interesting Jupyter Notebooks(https://github.com/jupyter/jupyter/wiki/A-gallery-of-interesting-Jupyter-Notebooks) · GitHub
Porque Charles Xavier debe cambiar a Cerebro por Python, a study in data and gender in the Marvel comics universe, by Mai Giménez and Angela Rivera. Functional Geometry: a deconstruction of the MC Escher woodcut Square Limit, an IJulia notebook by Shashi Gowda. Solving physical puzzles with a Jupyter Noteboook.
nonprofit organization that developed and supported the interactive computing products Jupyter Notebook, JupyterHub, and JupyterLab
Project Jupyter (pronounced "Jupiter") is a project to develop open-source software, open standards, and services for interactive computing across multiple programming languages. It was spun off from IPython in 2014 by its … Wikipedia
Factsheet
Abbreviation Jupyter
Formation July 2014; 11 years ago (2014-07)
Factsheet
Abbreviation Jupyter
Formation July 2014; 11 years ago (2014-07)
🌐
Project Jupyter
jupyter.org
Jupyter Notebook
Notebooks can be shared with others using email, Dropbox, GitHub and the Jupyter Notebook Viewer. Your code can produce rich, interactive output: HTML, images, videos, LaTeX, and custom MIME types. Leverage big data tools, such as Apache Spark, from Python, R, and Scala.
Discussions

Jupyter Notebooks - Great tool for beginners
Jupyter is a great tool when you're doing the initial design but just be careful, it can encourage bad code practices because you can swap up and down in the different cells and it can hurt in the long run if you don't realise it. I'd suggest once you get the code working practice putting it in a script, you'll quickly learn how to do scripts without reaching for notebooks and development will be faster. More on reddit.com
🌐 r/learnpython
72
378
March 5, 2021
Is there a good "intro to Jupyter Notebooks" tutorial?
I hear that @danielskatz is looking for a good hands-on introduction to Jupyter Notebooks (the document specification, the interface, etc). Something that is fit for a tutorial session or a bootcamp with a small-ish group (e.g., More on discourse.jupyter.org
🌐 discourse.jupyter.org
0
0
July 3, 2019
Jupyter notebooks with Deep Learning tutorials

Thank you for the share.

More on reddit.com
🌐 r/learnmachinelearning
11
255
July 2, 2019
Getting Started with Jupyter Notebooks
🌐 r/pythontips
2
9
July 7, 2019
🌐
Dataquest
dataquest.io › blog › jupyter-notebook-tutorial
How to Use Jupyter Notebook: A Beginner’s Tutorial – Dataquest
October 23, 2025 - If you’d like further inspiration ... interesting Jupyter Notebooks that you may find helpful and the Nbviewer homepage links to some really fancy examples of quality notebooks. If you’d like to learn more about this topic, check out Dataquest's interactive Python Functions and ...
🌐
Jupyter Notebook
jupyter-notebook.readthedocs.io › en › latest › examples › Notebook › examples_index.html
Notebook Examples — Jupyter Notebook 7.6.0a4 documentation
Importing Jupyter Notebooks as Modules · Notebook Loader · The Module Finder · Register the hook · Notebooks in packages · Connecting to an existing IPython kernel using the Qt Console · The Frontend/Kernel Model · Manual connection · Automatic connection using a new Qt Console · Motivating Examples ·
🌐
Digitalearthafrica
training.digitalearthafrica.org › en › latest › python_basics › 01_jupyter.html
Python basics 1: Jupyter — Digital Earth Africa Training 0.1 documentation
While a cell is running it shows the [*] symbol and once it has completed running you’ll see a number representing the number of cells being run, for example [4]. This allows you to keep track of the cells that have been run and their relative order. Note: To check whether a cell is currently executing in a Jupyter notebook, inspect the small circle in the top-right of the window. The circle will turn black (“Kernel busy”) when the cell is running, and return to white (“Kernel idle”) when the process is complete. Consider this Python program.
🌐
Plotly
plotly.com › python › ipython-notebook-tutorial
Jupyter notebook tutorial in Python
Checkout the IRkernel documentation for some simple installation instructions. Once IRkernel is installed, open a Jupyter Notebook by calling $ jupyter notebook and use the New dropdown to select an R notebook. See a full R example Jupyter Notebook here: https://plotly.com/~chelsea_lyn/14069
Find elsewhere
🌐
Python Like You Mean It
pythonlikeyoumeanit.com › Module1_GettingStartedWithPython › Jupyter_Notebooks.html
Jupyter Notebooks — Python Like You Mean It
We’ll use matplotlib, a Python library that is used for plotting data, and NumPy, the premiere library for doing numerical work in Python. We will import these libraries for use in our code. Next we’ll define some mathematical functions. And finally, we’ll plot these functions evaluated on a large number of closely-spaced points on the domain. ... import numpy as np import matplotlib.pyplot as plt # this tells Jupyter to embed matplotlib plots in the notebook %matplotlib inline
🌐
GitHub
github.com › rahulbot › notebook-examples
GitHub - rahulbot/notebook-examples: Example Jupyter Python notebooks · GitHub
This includes a few Jupyter Python Notebooks I use as examples in my teaching.
Starred by 8 users
Forked by 31 users
Languages   Jupyter Notebook
🌐
JupyterLab
coderefinery.github.io › jupyter › examples
Examples of Jupyter features — Jupyter notebooks documentation
Open a terminal window inside JupyterLab and do the installation. After installing ipyparallel, you need to start an “IPython cluster”. Do this in the terminal with ipcluster start. Then import ipyparallel in your notebook, initialize a Client instance, and create DirectView object for direct execution on the engines:
🌐
GeeksforGeeks
geeksforgeeks.org › python › getting-started-with-jupyter-notebook-python
Getting started with Jupyter Notebook - Python - GeeksforGeeks
Your default browser will open at: http://localhost:8888/tree ... This Notebook Dashboard shows a list of notebooks, files and directories in the folder where the server started (often your home directory).
Published   January 12, 2026
🌐
DataCamp
datacamp.com › tutorial › tutorial-jupyter-notebook
How to Use Jupyter Notebooks: The Ultimate Guide | DataCamp
March 10, 2023 - We will explore notebooks using ... of Jupyter notebooks, along with functionality for connecting to databases, real-time collaboration, and publishing your work. This tutorial assumes that you have used a data science programming language before, such as Python, SQL, R, ...
🌐
YouTube
youtube.com › watch
Jupyter Notebook Tutorial: Introduction, Setup, and Walkthrough - YouTube
In this Python Tutorial, we will be learning how to install, setup, and use Jupyter Notebooks. Jupyter Notebooks have become very popular in the last few yea...
Published   September 22, 2016
🌐
GitHub
gist.github.com › kenjyco › 69eeb503125035f21a9d
Learn Python 3 with Jupyter Notebook · GitHub
Click https://mybinder.org/v2/gist/kenjyco/69eeb503125035f21a9d/HEAD?filepath=learning-python3.ipynb to start an interactive notebook from this gist in the browser. No need to install anything locally! You just need wait for the Docker image to be built on their server, then the JupyterHub server will load the notebook in a live environment.
🌐
Reddit
reddit.com › r/learnpython › jupyter notebooks - great tool for beginners
r/learnpython on Reddit: Jupyter Notebooks - Great tool for beginners
March 5, 2021 -

Just wanted to share with anyone who is struggling to learn AND implement code. I'm in my 4th week of Intro To Python and I have to say, I got a little overwhelmed. My teacher recommended using Jupyter Notebook (Google it, it's Free!) and it's helped out a shitload. Basically it's an open-source web app that allows you to share documents that contain live code. The BEST part is you can easily toggle between text for note-taking and code AND RUN THE CODE right in the document. This really changed the game for me and if you're out there struggling to bounce between your notes and your interpreter/compiler, check it out. Good luck

🌐
TutorialsPoint
tutorialspoint.com › jupyter › index.htm
Jupyter Tutorial
Python TechnologiesDatabasesComputer ProgrammingWeb DevelopmentJava TechnologiesComputer ScienceMobile DevelopmentBig Data & AnalyticsMicrosoft TechnologiesDevOpsLatest TechnologiesMachine LearningDigital MarketingSoftware QualityManagement Tutorials View All Categories ... Project Jupyter is a comprehensive software suite for interactive computing, that includes various packages such as Jupyter Notebook, QtConsole, nbviewer, JupyterLab.
🌐
Codecademy
codecademy.com › article › how-to-use-jupyter-notebooks
How to use Jupyter Notebooks: A Complete Tutorial
To run a Python file (.py) in Jupyter Notebook, you can use the %run magic command. First, make sure the .py file is in the same directory as your notebook. Then, in a code cell, type: ... You can import functions, classes, or variables from ...
🌐
Jupyter Community Forum
discourse.jupyter.org › general
Is there a good "intro to Jupyter Notebooks" tutorial? - General - Jupyter Community Forum
July 3, 2019 - I hear that @danielskatz is looking for a good hands-on introduction to Jupyter Notebooks (the document specification, the interface, etc). Something that is fit for a tutorial session or a bootcamp with a small-ish grou…
🌐
Project Jupyter
jupyter.org › try
Project Jupyter | Try Jupyter
Share insights by converting notebooks into interactive dashboards
🌐
Real Python
realpython.com › jupyter-notebook-introduction
Jupyter Notebook: An Introduction – Real Python
November 20, 2023 - In this step-by-step Python tutorial, you learn how to get started with The Jupyter Notebook, an open source web application that you can use to create and share documents that contain live code, equations, visualizations, and text.