diff --git a/website/docs/FAQ.md b/website/docs/FAQ.md index f4c0f2f81..aa874c285 100644 --- a/website/docs/FAQ.md +++ b/website/docs/FAQ.md @@ -1,5 +1,6 @@ # Frequently Asked Questions +- [Install the correct package - `pyautogen`](#install-the-correct-package---pyautogen) - [Set your API endpoints](#set-your-api-endpoints) - [Use the constructed configuration list in agents](#use-the-constructed-configuration-list-in-agents) - [Unexpected keyword argument 'base_url'](#unexpected-keyword-argument-base_url) @@ -19,6 +20,15 @@ - [When using autogen docker, is it always necessary to reinstall modules?](#when-using-autogen-docker-is-it-always-necessary-to-reinstall-modules) - [Agents are throwing due to docker not running, how can I resolve this?](#agents-are-throwing-due-to-docker-not-running-how-can-i-resolve-this) +## Install the correct package - `pyautogen` + +The name of Autogen package at PyPI is `pyautogen`: +``` +pip install pyautogen +``` + +Typical errors that you might face when using the wrong package are `AttributeError: module 'autogen' has no attribute 'Agent'`, `AttributeError: module 'autogen' has no attribute 'config_list_from_json'` etc. + ## Set your API endpoints This documentation has been moved [here](/docs/llm_configuration).