Update documentation with conda installation instructions

Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
Devin AI
2025-04-23 09:54:14 +00:00
parent d3223a5aa1
commit 5d4ab49153
2 changed files with 29 additions and 1 deletions

View File

@@ -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**.
<Steps>