Preparation for installation
安装Open Deep Research需要满足以下基础环境:Python 3.12+版本操作系统(推荐使用虚拟环境)、uv包管理工具。
详细步骤
- 安装uv工具:
curl -LsSf https://astral.sh/uv/install.sh | sh
- Cloning Warehouse:
git clone https://github.com/togethercomputer/open_deep_research.git
- Create a virtual environment:
uv venv --python=3.12
source .venv/bin/activate - Install the dependencies:
uv pip install -r pyproject.toml
- Configure the API key:
需设置TOGETHER_API_KEY、TAVILY_API_KEY和HUGGINGFACE_TOKEN环境变量
caveat
如果安装uv失败,可尝试先安装Rust工具链;LangGraph评估功能需要单独安装额外依赖。遇到依赖冲突时建议使用Docker容器隔离环境。
This answer comes from the articleTogether Open Deep Research: Generating Indexed Deep Research ReportsThe