Follow these steps to set up the project environment and install the required dependencies.
- Create a new virtual environment using Python 3.11:
python3.11 -m venv myenv
- Activate the virtual environment:
source myenv/bin/activate
- Install the main project dependencies:
pip install crewai python-dotenv langchain_openai langchain_community
- Install additional tools for crewai:
pip install 'crewai[tools]'
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.