Crewai

📦 Prerequisites

Before installing CrewAI, ensure you have:

🚀 Installing CrewAI via pip

Run the following command in your terminal to install the core framework:

pip install crewai

This pulls the latest CrewAI release and its minimal dependencies.

🛠️ Adding Optional Tooling

CrewAI comes with built‑in Browser and Code Interpreter tools. To install these extras, append the [tools] extras tag:

pip install 'crewai[tools]'

You’ll now have access to:

✅ Verifying Your Installation

Confirm everything is working with a quick import check and version print:

python - << 'EOF' import crewai print("CrewAI version:", crewai.__version__) EOF

If you see the version number (e.g., 1.2.0), you’re all set!

🔍 Common Troubleshooting Tips

With CrewAI installed, you’re ready to start defining your first Crews and Flows. Happy coding! 😎