安装OpenDeepSearch需要以下步骤和前置条件:
environmental preparation
- 操作系统:Windows/Mac/Linux均可
- Python版本:必须安装3.10或更高版本(可通过
python --version
检查) - 必要工具:Git(用于克隆仓库)和pip(管理依赖包)
Installation process
- cloning project::
git clone https://github.com/sentient-agi/OpenDeepSearch.git
- Access to the catalog::
cd OpenDeepSearch
- Creating a virtual environment (recommended)::
python -m venv venv
,激活方式:- Windows.
venvScriptsactivate
- Mac/Linux.
source venv/bin/activate
- Windows.
- Installation of dependencies::
pip install -r requirements.txt
Key Configurations
需提前注册并获取以下API密钥:
- SERPER(网页搜索)
- OPENROUTER(模型访问)
- JINA(语义排序)
将密钥填入项目根目录的.env
文件中即可完成配置。
This answer comes from the articleOpenDeepSearch: an open source search tool that supports intelligent reasoningThe