From 45677e3e085335cc3acadbf98df4847b98a2cc2f Mon Sep 17 00:00:00 2001 From: Ayush Kumar Pandit <31253617+Ayushpanditmoto@users.noreply.github.com> Date: Wed, 18 Oct 2023 05:21:24 +0530 Subject: [PATCH] docs: added virtual environment setup process (#249) * docs: added virtual environment setup process * Update website/docs/Installation.md --------- Co-authored-by: Li Jiang Co-authored-by: Chi Wang --- website/docs/Installation.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/website/docs/Installation.md b/website/docs/Installation.md index 8310e5949..9860c83b1 100644 --- a/website/docs/Installation.md +++ b/website/docs/Installation.md @@ -1,5 +1,14 @@ # Installation +## Setup Virtual Environment + +When not using a docker container, we recommend using a virtual environment to install AutoGen. This will ensure that the dependencies for AutoGen are isolated from the rest of your system. + +```bash +python3 -m venv autogen +source autogen/bin/activate +``` + ## Python AutoGen requires **Python version >= 3.8**. It can be installed from pip: