Developer Environment Setup for Agents
- Python
- windows
winget install --id Python.Python.3.13 - mac
brew install python@3.13
- windows
- UV
- Windows
winget install -e --id astral-sh.uv - mac
brew install uv
- Windows
- Visual Studio Code with necessary extensions
- Windows
winget install Microsoft.VisualStudioCode - Mac
brew install --cask visual-studio-code
- Windows
-
Google AI Studio API Key
-
Note: For vscode extensions
- Python (Microsoft)
- Jupyter (Microsoft)
Windows
- To install software we will be using winget
Mac
- In Mac we need to install homebrew Refer Here
Goal: Interact with model programatically
- Creating a python project
- Create a folder
- cd into folder
- execute
uv init . - execute
uv add langchain - execute
code . - select interpretor (watch the classroom video)
- Where is your model?
langchain google ai studio- Google ai studio
- now add additional packages
uv add python-dotenv ipykernel langchain-google-genai
- Refer Here for notebook.
