fix: install networkx in agents container for build-graph.py #14
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
lib/build-graph.pyrequiresnetworkxbut the agents Dockerfile only installs barepython3(no pip, no packages). The structural analysis graph silently fails withModuleNotFoundError: No module named 'networkx'.This affects review-pr.sh, planner-run.sh, and predictor-run.sh — they all skip the graph and give Claude less context.
Fix
Add
python3-pipandnetworkxtodocker/agents/Dockerfile:Or use the Debian package if available:
python3-networkx.Affected files
docker/agents/Dockerfile