environmental preparation
Before installing AgentIQ you need to make sure that Git, Git LFS and uv tools are installed on your system.
Installation steps
- Cloning the code base:
git clone git@github.com:NVIDIA/AgentIQ.git agentiq - Update the submodule:
git submodule update --init --recursive - (Optional) Download data:
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)
Core Installation Options
- Complete Installation:
uv sync --all-groups --all-extras - Foundation Installation:
uv sync - Support LangChain:
uv pip install -e '.[langchain]' - Performance Analysis:
uv pip install -e '.[profiling]'
Verify Installation
(of a computer) runaiq --versionCheck the version number to confirm successful installation.
This answer comes from the articleAgentIQ: An open source tool for flexible connection and management of AI intelligencesThe
































