autogen/website/docs/Installation.md

27 lines
601 B
Markdown
Raw Normal View History

2023-08-30 16:50:59 -04:00
# Installation
## Python
AutoGen requires **Python version >= 3.8**. It can be installed from pip:
```bash
2023-09-16 15:30:28 +00:00
pip install pyautogen
2023-08-30 16:50:59 -04:00
```
2023-09-19 12:38:26 +00:00
<!--
2023-08-30 16:50:59 -04:00
or conda:
```
2023-09-16 15:30:28 +00:00
conda install pyautogen -c conda-forge
``` -->
2023-09-16 15:30:28 +00:00
### 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`:
```bash
pip install docker
```
2023-09-16 15:30:28 +00:00
* blendsearch
```bash
pip install "pyautogen[blendsearch]"
```