Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Installation.md-with detailed explanation on add a period or newline #219 #231

Merged
merged 3 commits into from
Oct 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions website/docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
qingyun-wu marked this conversation as resolved.
Show resolved Hide resolved

To use docker for code execution, you also need to install the python package `docker`:
```bash
pip install docker
```
Expand Down