From 3fa36688cc119849f5c587c13a140d60fde7d630 Mon Sep 17 00:00:00 2001 From: Muhammad Hamid Raza <144342718+MuhammadHamidRaza@users.noreply.github.com> Date: Fri, 17 Jul 2026 17:09:46 +0500 Subject: [PATCH] Change .env file path in setup instructions Updated instructions to specify the correct path for the .env file. --- docs/get-started/python.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/get-started/python.md b/docs/get-started/python.md index cacd20b70a..a6faa41b39 100644 --- a/docs/get-started/python.md +++ b/docs/get-started/python.md @@ -97,19 +97,19 @@ In a terminal window, write your API key into an `.env` file as an environment v === "MacOS / Linux" ```bash title="Update: my_agent/.env" - echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > .env + echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > my_agent/.env ``` === "Windows PowerShell" ```console title="Update: my_agent/.env" - echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > .env + echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > my_agent/.env ``` === "Windows Command Prompt" ```console title="Update: my_agent/.env" - echo GOOGLE_API_KEY="YOUR_API_KEY" > .env + echo GOOGLE_API_KEY="YOUR_API_KEY" > my_agent/.env ``` ??? tip "Using other AI models with ADK"