From ae7be6debae936b595a84bb9a31a19f401207158 Mon Sep 17 00:00:00 2001 From: Joe Maples Date: Thu, 23 Apr 2026 16:45:28 +0000 Subject: [PATCH] fix(docker): Install all dependencies for agent (#897) --- docker_init.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_init.bash b/docker_init.bash index 187e825..933dde9 100644 --- a/docker_init.bash +++ b/docker_init.bash @@ -306,7 +306,7 @@ else fi done if [ -n "$_agent_src" ]; then - uv pip install "$_agent_src[honcho]" --trusted-host pypi.org --trusted-host files.pythonhosted.org || error_exit "Failed to install hermes-agent's requirements" + uv pip install "$_agent_src[all]" --trusted-host pypi.org --trusted-host files.pythonhosted.org || error_exit "Failed to install hermes-agent's requirements" else echo "" echo "!! WARNING: hermes-agent source not found."