Jupyter
ExtensionFreeFull Jupyter notebook support in VS Code.
Capabilities13 decomposed
interactive cell-based code execution with kernel abstraction
Medium confidenceExecutes code cells individually against a Jupyter kernel process running in a separate process or remote environment, communicating via the Jupyter Wire Protocol. Each cell maintains execution state in the kernel, enabling incremental development workflows where variables persist across cell runs. The extension marshals code from the notebook editor to the kernel, captures stdout/stderr, and returns execution results without requiring full script re-execution.
Integrates Jupyter kernel execution directly into VS Code's native notebook editor (not a separate UI), leveraging VS Code's built-in notebook infrastructure rather than embedding a custom notebook renderer. This allows seamless integration with VS Code's file system, command palette, and settings while maintaining full Jupyter protocol compatibility.
Tighter VS Code integration than JupyterLab (no context switching) and lower overhead than running standalone Jupyter, but depends on external kernel installation unlike some cloud-based notebook platforms.
rich mime-type output rendering with extensible renderers
Medium confidenceRenders cell execution outputs by detecting MIME types (text/plain, text/html, image/png, application/json, text/latex, application/vnd.plotly.v1+json, etc.) and delegating to specialized renderers. The Jupyter Notebook Renderers extension (auto-installed) provides built-in renderers for common types; custom renderers can be registered via the Notebook Renderer API. Output is displayed inline below the cell with support for interactive elements (Plotly charts, HTML widgets).
Uses VS Code's native Notebook Renderer API to register MIME type handlers, allowing third-party extensions to contribute custom renderers without modifying the core extension. This architecture mirrors VS Code's extension ecosystem model and enables community-driven renderer development.
More extensible than JupyterLab's fixed renderer set and better integrated with VS Code's extension marketplace, but requires extension development for custom types vs JupyterLab's simpler plugin system.
remote kernel connection and cloud compute integration
Medium confidenceAllows connecting to Jupyter kernels running on remote servers or cloud platforms via SSH, HTTP, or cloud-specific endpoints. Users can configure remote kernel connections in VS Code settings or via the kernel picker UI, specifying connection details (host, port, authentication). The extension communicates with remote kernels using the Jupyter Wire Protocol over the network, enabling execution of code on remote compute resources without local installation. Supports GitHub Codespaces kernels and custom remote kernel servers.
Supports both SSH and HTTP remote kernel connections, enabling flexibility in deployment scenarios (on-premises servers, cloud VMs, managed Jupyter services). GitHub Codespaces integration allows seamless kernel access in browser-based VS Code without local setup.
More flexible than JupyterLab's remote kernel support (supports multiple connection types) and enables cloud compute without leaving VS Code, but requires manual configuration vs some platforms with built-in cloud provider integrations.
notebook metadata and kernel configuration persistence
Medium confidenceStores notebook-level metadata (kernel name, language, custom settings) in the .ipynb file's 'metadata' JSON object. When a notebook is opened, the extension reads the stored kernel name and automatically selects that kernel, ensuring consistent execution environment across sessions. Users can also configure kernel-specific settings (e.g., Python environment variables, kernel arguments) in the notebook metadata or VS Code settings. Metadata is preserved when notebooks are shared or version-controlled.
Stores kernel metadata in the standard .ipynb format, ensuring compatibility with other Jupyter tools and version control systems. Automatic kernel selection based on metadata reduces manual configuration when opening notebooks.
Ensures reproducibility by storing kernel information with the notebook, but requires manual kernel installation vs some platforms with built-in environment provisioning.
notebook-export-and-format-conversion
Medium confidenceExports notebooks to multiple formats (HTML, PDF, Markdown, Python script) using nbconvert integration. Triggered via command palette (`Jupyter: Export as...`) or right-click context menu. Requires nbconvert package and optional dependencies (pandoc for PDF, etc.) to be installed in the kernel environment. Exports preserve cell outputs, metadata, and formatting based on the target format.
Integrates nbconvert directly into VS Code's command palette and context menu, providing one-click export without requiring command-line usage, while maintaining full compatibility with nbconvert's format options.
More convenient than command-line nbconvert because it provides a UI-based export workflow, while maintaining full feature parity with nbconvert's conversion capabilities.
variable inspector with kernel state introspection
Medium confidenceDisplays a panel showing all variables currently defined in the kernel's namespace, including their type, shape (for arrays/DataFrames), and value. The extension queries the kernel using introspection commands (e.g., Python's dir() and type() functions) to populate the variable list. Clicking a variable can show its full representation or open a data viewer for large structures like DataFrames. The variable list updates after each cell execution.
Integrates variable inspection into VS Code's sidebar as a native panel (not a separate window), providing persistent visibility of kernel state alongside code and output. Uses kernel introspection rather than static analysis, ensuring accuracy for dynamically-typed languages.
More integrated into the editor workflow than JupyterLab's variable inspector (always visible in sidebar) and faster than manually printing variables, but less detailed than specialized data profiling tools like pandas-profiling.
kernel selection and multi-kernel management
Medium confidenceProvides UI for discovering, selecting, and switching between Jupyter kernels installed on the system or accessible remotely. The kernel picker (dropdown in notebook toolbar) queries the system for available kernelspecs (JSON files defining kernel metadata and launch commands) and allows users to select one. Switching kernels restarts the kernel process and clears the previous kernel's state. The extension can also auto-detect Python environments (conda, venv, pyenv) and create kernel entries for them.
Integrates kernel discovery with VS Code's Python extension to auto-detect local environments (conda, venv, pyenv) and automatically create kernel entries, reducing manual configuration. Kernel selection is persistent per notebook file, stored in notebook metadata.
More seamless environment switching than command-line Jupyter (no terminal context switching) and better integrated with VS Code's Python environment management than standalone JupyterLab, but lacks cloud provider integrations that some platforms offer.
notebook file format persistence and version control integration
Medium confidenceStores notebooks in the standard Jupyter .ipynb format (JSON with cells, metadata, outputs, and kernel info). The extension reads and writes .ipynb files directly, preserving cell order, execution counts, and output MIME bundles. Notebooks are version-controllable via Git; the extension provides no special merge conflict resolution, so conflicts must be resolved manually or with external tools. Cell metadata (tags, slide show settings) is preserved in the .ipynb JSON structure.
Uses the standard Jupyter .ipynb format without custom extensions, ensuring compatibility with other Jupyter tools and version control systems. Stores execution counts and output state in the file, enabling reproducibility but creating merge conflicts in collaborative scenarios.
Fully compatible with standard Jupyter ecosystem and Git workflows, but less merge-friendly than some alternatives (e.g., Jupytext's percent-script format) and requires external tools for conflict resolution.
code completion and intellisense via language server protocol
Medium confidenceProvides code completion, parameter hints, and inline documentation for notebook cells by delegating to VS Code's built-in language servers (Pylance for Python, etc.). As users type in a cell, the language server analyzes the code context (imports, variable definitions from previous cells) and suggests completions. The extension passes the cell's code and kernel state to the language server, enabling context-aware suggestions that account for variables defined in earlier cells.
Reuses VS Code's existing language server infrastructure (Pylance, etc.) rather than implementing custom completion logic, ensuring consistency with VS Code's Python development experience. Integrates cell-level code context with language server analysis.
More powerful than basic regex-based completion (understands type information and imports) and consistent with VS Code's Python IDE experience, but less aware of kernel state than JupyterLab's kernel-based completion.
cell tagging and slide show presentation mode
Medium confidenceAllows users to tag cells with metadata (e.g., 'slide', 'fragment', 'skip') via the Jupyter Cell Tags extension (auto-installed). Tagged cells can be organized into slide shows using the Jupyter Slide Show extension, which converts the notebook into a presentation format. Cells tagged as 'slide' become new slides, 'fragment' cells appear as bullet points, and 'skip' cells are hidden. The presentation can be viewed in a browser or exported to HTML/PDF.
Integrates cell tagging and slide show functionality as separate extensions (Jupyter Cell Tags, Jupyter Slide Show) that are auto-installed with the main extension, allowing modular feature development and optional disabling of presentation features.
Enables presentation creation without leaving VS Code (vs exporting to PowerPoint or Keynote) and preserves notebook code alongside presentation, but less polished than dedicated presentation tools like Keynote or Google Slides.
debugging with breakpoints and step-through execution
Medium confidenceEnables setting breakpoints in notebook cells and stepping through code execution using VS Code's debugger UI. When a breakpoint is hit, the debugger pauses kernel execution and displays the call stack, local variables, and allows step-over/step-into/step-out operations. The extension communicates with the kernel's debugger protocol (e.g., Python's pdb or debugpy) to control execution. Breakpoints are set by clicking the gutter next to line numbers in cells.
Integrates VS Code's native debugger UI with Jupyter kernel debugging protocols, allowing users to debug notebooks with the same familiar debugger interface as regular Python scripts. Breakpoints are set in the notebook editor's gutter, not in a separate debugger panel.
More integrated debugging experience than JupyterLab's limited debugging support and consistent with VS Code's Python debugging, but requires kernel debugger support (not all kernels have it).
notebook export to multiple formats
Medium confidenceExports notebooks to various formats (HTML, PDF, Markdown, Python scripts) using nbconvert, a Jupyter tool that converts .ipynb files to other formats. The extension provides UI commands to trigger exports; the actual conversion is performed by nbconvert running on the system. Exported files preserve cell code and outputs, with formatting tailored to the target format (e.g., HTML includes interactive outputs, Markdown includes code blocks).
Delegates export to nbconvert (the standard Jupyter export tool) rather than implementing custom export logic, ensuring compatibility with the broader Jupyter ecosystem and supporting all nbconvert-compatible formats. Export is triggered via VS Code command palette.
Supports all nbconvert formats (HTML, PDF, Markdown, Python, etc.) and is the standard Jupyter export mechanism, but requires nbconvert installation and complex PDF setup vs some cloud platforms with built-in export.
notebook creation and file management
Medium confidenceProvides commands to create new notebooks (.ipynb files) and manage notebook files within VS Code. Users can create a new notebook via the Command Palette ('Jupyter: Create New Jupyter Notebook') or the File menu, which creates an empty notebook with a default kernel selection. Notebooks are stored as .ipynb files in the file system and can be organized in folders like regular files. The extension integrates with VS Code's file explorer for notebook management.
Integrates notebook creation into VS Code's native file creation workflow (Command Palette, File menu) rather than requiring a separate notebook server or UI. New notebooks are immediately editable in VS Code's notebook editor.
Simpler and faster than creating notebooks in JupyterLab (no server startup required) and integrated with VS Code's file management, but less feature-rich than JupyterLab's notebook creation options.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Jupyter, ranked by overlap. Discovered automatically through the match graph.
jupyter-mcp-server
🪐 🔧 Model Context Protocol (MCP) Server for Jupyter.
Azure Machine Learning - Remote
This extension is used by the Azure Machine Learning Extension
GPT-Code UI
An open-source implementation of OpenAI's ChatGPT Code...
autogen
Alias package for ag2
Fabric Data Engineering VS Code - Remote
Create and manage Microsoft Fabric notebooks inside Visual Studio Code for the Web (Previously Synapse VS Code - Remote)
OpenSandbox
Secure, Fast, and Extensible Sandbox runtime for AI agents.
Best For
- ✓data scientists and researchers prototyping analyses interactively
- ✓Python developers transitioning from Jupyter notebooks to VS Code
- ✓teams using polyglot notebooks with multiple language kernels
- ✓data scientists and analysts working with visualization-heavy notebooks
- ✓researchers publishing computational narratives with mixed media output
- ✓teams building custom output renderers for domain-specific data types
- ✓data scientists running heavy computations on cloud resources
- ✓teams collaborating on shared remote kernels
Known Limitations
- ⚠Requires external Jupyter kernel installation — extension does not bundle or manage kernels
- ⚠Kernel process must be running on local machine or accessible remote server; no built-in kernel provisioning
- ⚠In browser contexts (vscode.dev, github.dev), local kernel execution is unavailable — requires pre-configured remote kernel
- ⚠Cell execution order is user-controlled; no automatic dependency resolution between cells
- ⚠Kernel crashes or hangs require manual restart via UI; no automatic recovery
- ⚠Only MIME types explicitly supported by registered renderers are displayed; unsupported types fall back to text/plain representation
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
Full Jupyter notebook support in VS Code with interactive cell execution, rich output rendering, variable explorer, and kernel management. Supports Python, R, Julia and other Jupyter kernels.
Categories
Alternatives to Jupyter
Are you the builder of Jupyter?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →