Extension Setup
Install the official Python and Jupyter extensions in VS Code and understand what each one adds to the editor.
Set up a lightweight Python notebook workflow in VS Code using the Python and Jupyter
extensions. This lesson shows how to create a virtual environment, open a .ipynb file,
and run your first interactive notebook cell.
Python extension in VS CodeJupyter extension.venv virtual environment is useful for clean projects.ipynb file is and how notebook cells workFollow along as the environment is set up from scratch, then open the demo notebook and run the same example yourself.
This foundation lesson keeps the focus on getting ready to learn Python with interactive notebooks, without adding unnecessary complexity.
Install the official Python and Jupyter extensions in VS Code and understand what each one adds to the editor.
Create a project-specific .venv so your Python work stays isolated, cleaner, and easier to manage later.
Open a hello.ipynb file, write a first cell, run it, and see output appear directly beneath the code.
VENV environment.ipynb notebook fileprint("Hello World") exampleUse the sample notebook to confirm your setup works and to get comfortable running cells in VS Code.
Download the starter notebook and run the example in your own environment.