From 5d4ab491538797d4e672d3dc6b235766a80191af Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 23 Apr 2025 09:54:14 +0000 Subject: [PATCH] Update documentation with conda installation instructions Co-Authored-By: Joe Moura --- README.md | 14 +++++++++++++- docs/installation.mdx | 16 ++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d563daee..fe81503ed 100644 --- a/README.md +++ b/README.md @@ -129,12 +129,24 @@ First, install CrewAI: ```shell pip install crewai ``` + If you want to install the 'crewai' package along with its optional features that include additional tools for agents, you can do so by using the following command: ```shell pip install 'crewai[tools]' ``` -The command above installs the basic package and also adds extra components which require more dependencies to function. + +### Using conda + +You can also install CrewAI using conda: + +```shell +conda install -c conda-forge crewai +``` + +Note: If you're using Python 3.10, make sure you have `typing_extensions` installed to resolve any 'Self' import issues. + +The commands above install the basic package and also add extra components which require more dependencies to function. ### Troubleshooting Dependencies diff --git a/docs/installation.mdx b/docs/installation.mdx index 7c1e09a3b..2d7147978 100644 --- a/docs/installation.mdx +++ b/docs/installation.mdx @@ -32,6 +32,22 @@ Watch this video tutorial for a step-by-step demonstration of the installation p CrewAI uses the `uv` as its dependency management and package handling tool. It simplifies project setup and execution, offering a seamless experience. +### Installation Options + +You can install CrewAI using either pip or conda: + +#### Using pip (recommended) +```shell +pip install crewai +``` + +#### Using conda +```shell +conda install -c conda-forge crewai +``` + +Note: If you're using Python 3.10 with conda, make sure you have `typing_extensions` installed to resolve any 'Self' import issues. + If you haven't installed `uv` yet, follow **step 1** to quickly get it set up on your system, else you can skip to **step 2**.