mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
21 lines
757 B
Markdown
21 lines
757 B
Markdown
---
|
|
title: Installing crewAI
|
|
description: A comprehensive guide to installing crewAI and its dependencies, including the latest updates and installation methods.
|
|
---
|
|
|
|
# Installing crewAI
|
|
|
|
Welcome to crewAI! This guide will walk you through the installation process for crewAI and its dependencies. crewAI is a flexible and powerful AI framework that enables you to create and manage AI agents, tools, and tasks efficiently. Let's get started!
|
|
|
|
## Installation
|
|
|
|
To install crewAI, you need to have Python >=3.10 and <=3.13 installed on your system:
|
|
|
|
```shell
|
|
# Install the main crewAI package
|
|
pip install crewai
|
|
|
|
# Install the main crewAI package and the tools package
|
|
# that includes a series of helpful tools for your agents
|
|
pip install 'crewai[tools]'
|
|
``` |