From 64fe90cbdd9a0db8c6180381a71dc2369615929e Mon Sep 17 00:00:00 2001 From: Josh Rogers Date: Wed, 27 May 2026 15:54:52 -0400 Subject: [PATCH] add support for pip --- libs/cli/langgraph_cli/config.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libs/cli/langgraph_cli/config.py b/libs/cli/langgraph_cli/config.py index 2d2c90526..3fc00e119 100644 --- a/libs/cli/langgraph_cli/config.py +++ b/libs/cli/langgraph_cli/config.py @@ -82,6 +82,14 @@ def _get_pip_cleanup_lines( echo "Dependency resolution check failed. One or more installed packages are incompatible."; \ echo "Pin compatible versions in your dependencies and try again."; \ exit 1 \ +)""" + ) + elif pip_installer == "pip": + commands.append( + """RUN python -m pip check || ( \ +echo "Dependency resolution check failed. One or more installed packages are incompatible."; \ +echo "Pin compatible versions in your dependencies and try again."; \ +exit 1 \ )""" ) commands.append(