environmental preparation
安装AgentIQ前需要确保系统已安装Git、Git LFS和uv工具。
Installation steps
- Cloning the code base:
git clone git@github.com:NVIDIA/AgentIQ.git agentiq
- 更新子模块:
git submodule update --init --recursive
- (可选)下载数据:
git lfs install && git lfs fetch && git lfs pull
- Create a virtual environment:
uv venv --seed .venv
- Activate the environment:
source .venv/bin/activate
(Linux/Mac)
核心安装选项
- 完整安装:
uv sync --all-groups --all-extras
- 基础安装:
uv sync
- 支持LangChain:
uv pip install -e '.[langchain]'
- 性能分析:
uv pip install -e '.[profiling]'
Verify Installation
(of a computer) runaiq --version
查看版本号确认安装成功。
This answer comes from the articleAgentIQ: An open source tool for flexible connection and management of AI intelligencesThe