One email each morning — yesterday's AI, sortedGet it in your inbox

METAL LAB

Google Releases VS Code Extension Connecting to Cloud Notebooks

Workbench Notebooks extension launches, directly linking local IDEs to Google Cloud compute

이미지: METAL LAB 생성

Summary

  • The VS Code extension for Google Cloud Workbench Notebooks has officially launched
  • It lets developers connect from a local development environment directly to a cloud-based Jupyter environment to tap into large-scale compute
  • The extension's full source code is open, and it can be downloaded from GitHub and the VS Code Marketplace
Video from the source
발표 매체
Google Developers Blog
제품명
Google Cloud Workbench Notebooks extension for VS Code
핵심 기능
로컬 VS Code와 클라우드 기반 Jupyter 환경 연결
배포 채널
GitHub, VS Code Marketplace
라이선스 방식
완전 오픈소스 공개
표방 효과
ML 워크플로 중 컨텍스트 전환(context switching) 제거

The days of opening three windows just to open one notebook

There's a familiar scene for machine learning developers: writing code in local VS Code, then, when large-scale data training is needed, opening a browser to log into a cloud console, switching to a separate Jupyter notebook page, and copying the code over again. Google says it wants to cut down on this repeated context-switching, and has released a VS Code extension to do it.

What was released

Google Cloud announced the official launch of a VS Code extension for Workbench Notebooks. Installing the extension lets developers connect directly from a local VS Code environment to Google Cloud's scalable Jupyter environment. The setup allows developers to write code on their own laptop while the actual computation runs on Google Cloud's high-performance infrastructure. Google said this reduces the burden of repeatedly switching environments during machine learning development.

The extension's full source code has been made public to support transparency and community-driven improvement. It is confirmed to be available for download from both a GitHub repository and the VS Code Marketplace.

What Workbench Notebooks already did

Google Cloud Workbench Notebooks originally provided a managed Jupyter environment within the Google Cloud console. It let users spin up instances equipped with accelerators like GPUs or TPUs directly in a web browser to run data analysis and model training. Until now, however, accessing this environment required going through the browser-based console, making it difficult to use the autocomplete, debugging, and version control tools of a developer's usual local editor. The new extension removes that boundary, taking the approach of attaching the cloud notebook kernel directly within VS Code.

The competitive landscape for cloud dev tools

Google isn't alone in trying to bridge local IDEs and cloud compute. AWS recently integrated inference optimization features into SageMaker Python SDK v3, enabling benchmarking and deployment to be handled together within notebook workflows. Both companies are moving in the direction of letting developers benefit from cloud infrastructure without ever leaving their local environment.

ItemGoogle Workbench ExtensionAWS SageMaker Python SDK v3
Connection methodVS Code ↔ Cloud JupyterIn-notebook package calls
Core goalEliminate context switchingAutomate inference recommendation and deployment
Release formFully open sourceSDK package update

Why open source

Google released this extension as fully open source rather than a closed commercial tool. When code is public, the developer community can fix bugs or add features directly, and enterprise users can verify in the code exactly what permissions the extension uses to access their cloud accounts. This trend of cloud infrastructure providers open-sourcing their developer tools has also appeared previously, in Google's release of the on-device LLM framework LiteRT-LM.

Google Releases LiteRT-LM, an Inference Framework for Edge LLMs

So what changes

What this extension changes isn't some flashy new technology, but developers' repetitive work. The process of data scientists and ML engineers copying and pasting code back and forth between a browser console and a local editor disappears, with VS Code alone connecting local coding to cloud execution. This is likely to save time on environment switching especially for teams that frequently run experiments requiring GPU resources. With AWS and Google both moving to improve notebook workflows, other cloud providers may follow with similar local-to-cloud connection tools.