From b46da52270bb671ae2b371def92029519c19e08e Mon Sep 17 00:00:00 2001 From: Hitesh Bansal <83907989+05hiteshbansal@users.noreply.github.com> Date: Fri, 13 Oct 2023 21:02:09 +0530 Subject: [PATCH 1/2] Update Installation.md Usage and importance of Docker is explained in more precise and to the point --- website/docs/Installation.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/website/docs/Installation.md b/website/docs/Installation.md index f1c70507a45a..4c539a1422cc 100644 --- a/website/docs/Installation.md +++ b/website/docs/Installation.md @@ -14,8 +14,11 @@ conda install pyautogen -c conda-forge ``` --> ### Optional Dependencies -* docker -We strongly recommend using docker for code execution or running AutoGen in a docker container (e.g., when developing in GitHub codespace, the autogen runs in a docker container). To use docker for code execution, you also need to install the python package `docker`: +1. For the best user experience and seamless code execution, we highly recommend using Docker with AutoGen. +2. Docker is a containerization platform that simplifies the setup and execution of your code. +3. If you're working in a GitHub Codespace environment, AutoGen make a easy development in environment with Docker container, which is convenient to use . + + To use docker for code execution, you also need to install the python package `docker`: ```bash pip install docker ``` From dad9bf209eff4fdbc24765bed6b327fafa49d54d Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Fri, 13 Oct 2023 16:00:28 -0400 Subject: [PATCH 2/2] Update website/docs/Installation.md --- website/docs/Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/Installation.md b/website/docs/Installation.md index 4c539a1422cc..cf1fc70c75e9 100644 --- a/website/docs/Installation.md +++ b/website/docs/Installation.md @@ -16,7 +16,7 @@ conda install pyautogen -c conda-forge ### Optional Dependencies 1. For the best user experience and seamless code execution, we highly recommend using Docker with AutoGen. 2. Docker is a containerization platform that simplifies the setup and execution of your code. -3. If you're working in a GitHub Codespace environment, AutoGen make a easy development in environment with Docker container, which is convenient to use . +3. If you're working in a GitHub Codespace environment, AutoGen make a easy development in environment with Docker container, which is convenient to use. To use docker for code execution, you also need to install the python package `docker`: ```bash