user3377465
user3377465

Reputation: 128

VS Code Jupyter Notebook looks different from release notes

I'm new VS Code and Jupyter Notebooks. In the recent release notes, I noticed the Notebook looks different than mine but I couldn't figure out how to get it - hence I'm not able to use the new features. These features are not listed under 'Preview' features either. Both my VS Code (Stable) and Jupyter extension are the latest.

Release notes with screenshots

How mine looks like My VS Code cell

Thanks!

Upvotes: 1

Views: 658

Answers (1)

joyceerhl
joyceerhl

Reputation: 486

The screenshots are of the preview native notebooks interface, which is currently only available in VS Code Insiders.

Please note that new Jupyter extension users in VS Code Insiders must currently add the following setting to their settings.json for the extension to work, due to https://github.com/microsoft/vscode-jupyter/issues/5804:

    "workbench.editorAssociations": [
        {
            "viewType": "jupyter-notebook",
            "filenamePattern": "*.ipynb"
        }
    ]

Upvotes: 2

Related Questions