Files
autogen/website/docs/Installation.md
Olaoluwa Ademola Salami 356f6e599f document retrieve chat (#258)
* document retrieve chat

* Ran pre commit hook
2023-10-16 16:41:51 +00:00

35 lines
833 B
Markdown

# Installation
## Python
AutoGen requires **Python version >= 3.8**. It can be installed from pip:
```bash
pip install pyautogen
```
<!--
or conda:
```
conda install pyautogen -c conda-forge
``` -->
### Optional Dependencies
* docker
For the best user experience and seamless code execution, we highly recommend using Docker with AutoGen. Docker is a containerization platform that simplifies the setup and execution of your code. Developing in a docker container, such as GitHub Codespace, also makes the development convenient.
When running AutoGen out of a docker container, to use docker for code execution, you also need to install the python package `docker`:
```bash
pip install docker
```
* blendsearch
```bash
pip install "pyautogen[blendsearch]"
```
* retrievechat
```bash
pip install "pyautogen[retrievechat]"
```