Setup Guide
Complete these steps before May 6th so you can follow along during the live session.
Install Visual Studio Code
5 minVS Code is the free, open-source code editor we will use as our primary workspace. It provides the integrated terminal where you will interact with AI agents.
- Download: Go to code.visualstudio.com and download the installer for your operating system (Windows, macOS, or Linux).
- Install: Run the installer. Accept the default settings.
- Launch: Open VS Code. You should see the Welcome tab.
- Open Terminal: Press
Ctrl + `(backtick) to open the integrated terminal. This is where all the magic happens.
Install Node.js
5 minNode.js is the JavaScript runtime that powers the Gemini CLI. You need it installed before you can use npm (the Node Package Manager).
- Download: Go to nodejs.org and download the LTS (Long Term Support) version.
- Install: Run the installer. Accept all default settings.
- Verify: Open your VS Code terminal and run:
v20.x.x and 10.x.x). If you see an error, restart VS Code and try again.Install Gemini CLI
3 minThe Gemini CLI is Google's command-line AI agent. It turns your terminal into an intelligent workspace that can read files, write code, search the web, and execute multi-step plans.
Once installed, verify it works:
sudo.Authenticate with Google
3 minThe Gemini CLI needs to connect to your Google account to access the Gemini API. This is a one-time setup.
- Run the command above. The CLI will prompt you to authenticate.
- Sign in: A browser window will open. Sign in with your Google account.
- Authorize: Grant the requested permissions.
- Return to terminal: The CLI should confirm that authentication is successful.
export GEMINI_API_KEY=your_key_hereexit to return to your normal terminal. You are ready for the workshop!Setup Complete!
You are ready for the live-build. Head over to the lab session to start creating your AI agents.
Start Lab Exercise →