From 48ae371b0d02fc9f34871a45112f4ce4487550c8 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sat, 23 May 2026 08:42:00 +0000 Subject: [PATCH] docs: add virtual environment recommendation to installation --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 25f7cc162ae9..fb06134ee6a9 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,9 @@ AutoGen requires **Python 3.10 or later**. +> [!TIP] +> It is recommended to use a virtual environment (e.g., `python -m venv venv && source venv/bin/activate`) to avoid conflicts with other packages. + ```bash # Install AgentChat and OpenAI client from Extensions pip install -U "autogen-agentchat" "autogen-ext[openai]"