IPython
- IPython - Magic Commands
- IPython - Embedding IPython
- Importing Python Shell Code
- Setting IPython as Default Python Environment
- IPython - IO Caching
- Dynamic Object Introspection
- IPython - Command Line Options
- IPython - System Commands
- IPython - History Command
- Running & Editing Python Script
- IPython - Getting Started
- IPython - Installation
- IPython - Introduction
Jupyter
- Jupyter Notebook - IPyWidgets
- Converting Notebooks
- Jupyter Notebook - Plotting
- Cell Magic Functions
- Jupyter Notebook - Markdown Cells
- Jupyter Notebook - Editing
- Jupyter Notebook - Types of Cells
- Jupyter Notebook - User Interface
- Jupyter Notebook - Dashboard
- Installation and Getting Started
- Working With Jupyter Online
- Jupyter Notebook - Introduction
- Project Jupyter - Overview
QtConsole
- Using github and nbviewer
- Connecting to Jupyter Notebook
- QtConsole - Multiple Consoles
- QtConsole - Save to Html
- QtConsole - Inline Graphics
- QtConsole - Multiline Editing
- QtConsole - Getting Started
JupyterLab
- JupyterLab - Installing R Kernel
- JupyterLab - Interface
- Installation & Getting Started
- JupyterLab - Overview
Jupyter Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Using github and nbviewer
Sharing Jupyter notebook – Using github and nbviewer
Jupyter Notebook files with .ipynb extension in a GitHub repository will be rendered as static HTML files when they are opened. The interactive features of the notebook, such as custom JavaScript plots, will not work in your repository on GitHub.
To share notebook file using github, login to
and create a pubpc repository. Then upload your files using upload file button as shown below −This will give you an option to commit the changes made to the repository. Then, the repository will show uploaded file as below −
Cpck on the uploaded file to view inside github viewer. You can share the highpghted URL to others.
Another way to view the notebook file onpne is by using nbviewer utipty of Project Jupyter. Open
and put URL of file in your repository in the textfield as shown. Press Go button to view the notebook.Both these methods display notebook file as static html. To be able to execute code in the notebook, open it using Binder apppcation of Jupyter project.
In the nbviewer window you will see ‘Execute on Binder’ button. Cpck on it and you will see the notebook file opened exactly pke you open it from local dashboard of notebook server on your local machine. You can perform all actions pke add/edit cells, run the cells etc.
Advertisements