Skip to content

Commit fd2d3a6

Browse files
committed
docs: Add Windows setup tip for virtual environment usage
1 parent 25b2806 commit fd2d3a6

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,19 @@ pip install git+https://github.com/google/adk-python.git@main
7171

7272
Note: The development version is built directly from the latest code commits. While it includes the newest fixes and features, it may also contain experimental changes or bugs not present in the stable release. Use it primarily for testing upcoming changes or accessing critical fixes before they are officially released.
7373

74+
### 💡 Windows Setup Tip
75+
76+
For Windows users, it's recommended to use a virtual environment to avoid dependency conflicts:
77+
78+
```cmd
79+
# Create and activate virtual environment
80+
python -m venv .venv
81+
.venv\Scripts\activate.bat
82+
83+
# Then install ADK
84+
pip install google-adk
85+
```
86+
7487
## 📚 Documentation
7588

7689
Explore the full documentation for detailed guides on building, evaluating, and

0 commit comments

Comments
 (0)