A blog to discuss all things Ai Agent Frameworks and Platforms
CrewAi requires Python version >=3.10 <3.13 installed on your system.
Using Homebrew for package management on macOS (Please use something similar for your OS if not macOS)
Using Ollama as provider for llama3.1 model
ollama run llama3.1
brew install python@3.12
brew install pipx
pipx ensurepath
# tell pipx to use Python version 3.12
pipx install crewai --python /opt/homebrew/bin/python3.12
# crewai create crew <project_name>
crewai create crew crewai_hello_world
cd crewai_hello_world
python3 -m venv venv
source venv/bin/activate
# replace every occurence of the topic "AI LLMs" (3 in total)
'topic': 'AI LLMs'
# with
'topic': 'AI Agents'
# replace
2024
# with
2025
pip install crewai
crewai run