ai-agents
ai-agents copied to clipboard
Need a step by step video guide? See my full course:
Project Setup
Follow these steps to set up the project environment and install the required dependencies.
Setup Virtual Environment
- Create a new virtual environment using Python 3.11:
python3.11 -m venv myenv
- Activate the virtual environment:
source myenv/bin/activate
Install Dependencies
- Install the main project dependencies:
pip install crewai python-dotenv langchain_openai langchain_community
- Install additional tools for crewai:
pip install 'crewai[tools]'
Next Steps
After completing these steps, your environment will be set up and ready for development. Make sure to run all project-related commands within this activated virtual environment.