Cooragent supports Python 3.12+ environments and provides two standardized installation options, conda and venv:
- environmental preparation: First clone the GitHub repository (git clone https://github.com/LeapLabTHU/cooragent.git)
- virtualized environment: recommend using conda to create a proprietary environment (conda create -n cooragent python=3.12)
- Dependent Installation: Install the core dependencies via pip install -e . Install core dependencies, and optionally browser tools such as Playwright
- Key Configurations: Copy .env.example as .env file, configuration required:
- API keys (e.g. model access credentials such as OpenAI)
- MCP_AGENT=TrueEnable Proxy Communication Protocol
- USE_BROWSER=TrueEnable web crawler function
- validation test: Run python cli.py to check the installation status
Special Note: Windows users need to refer to the official documentation to install additional dependencies, if you encounter environmental problems, it is recommended to check the uv tool configuration and PATH environment variable settings.
This answer comes from the articleCooragent: building a multi-intelligence task collaboration tool in one sentenceThe































