From f140d4786d8ccfb5c4a64e4cda3fd1b1dbd343b2 Mon Sep 17 00:00:00 2001 From: Safi Date: Thu, 9 Apr 2026 08:40:17 +0100 Subject: [PATCH] Fix install step: try plain pip before --break-system-packages (#126) Co-Authored-By: Claude Sonnet 4.6 --- graphify/skill-claw.md | 2 +- graphify/skill-codex.md | 2 +- graphify/skill-droid.md | 2 +- graphify/skill-opencode.md | 2 +- graphify/skill-trae.md | 2 +- graphify/skill.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/graphify/skill-claw.md b/graphify/skill-claw.md index ca353efd..eb340952 100644 --- a/graphify/skill-claw.md +++ b/graphify/skill-claw.md @@ -68,7 +68,7 @@ if [ -n "$GRAPHIFY_BIN" ]; then else PYTHON="python3" fi -"$PYTHON" -c "import graphify" 2>/dev/null || pip install graphifyy -q --break-system-packages 2>&1 | tail -3 +"$PYTHON" -c "import graphify" 2>/dev/null || "$PYTHON" -m pip install graphifyy -q 2>/dev/null || "$PYTHON" -m pip install graphifyy -q --break-system-packages 2>&1 | tail -3 mkdir -p graphify-out # Write interpreter path for all subsequent steps "$PYTHON" -c "import sys; open('graphify-out/.graphify_python', 'w').write(sys.executable)" diff --git a/graphify/skill-codex.md b/graphify/skill-codex.md index e94f2da4..12f17c48 100644 --- a/graphify/skill-codex.md +++ b/graphify/skill-codex.md @@ -68,7 +68,7 @@ if [ -n "$GRAPHIFY_BIN" ]; then else PYTHON="python3" fi -"$PYTHON" -c "import graphify" 2>/dev/null || pip install graphifyy -q --break-system-packages 2>&1 | tail -3 +"$PYTHON" -c "import graphify" 2>/dev/null || "$PYTHON" -m pip install graphifyy -q 2>/dev/null || "$PYTHON" -m pip install graphifyy -q --break-system-packages 2>&1 | tail -3 # Write interpreter path for all subsequent steps "$PYTHON" -c "import sys; open('graphify-out/.graphify_python', 'w').write(sys.executable)" ``` diff --git a/graphify/skill-droid.md b/graphify/skill-droid.md index 915dc784..42647e66 100644 --- a/graphify/skill-droid.md +++ b/graphify/skill-droid.md @@ -68,7 +68,7 @@ if [ -n "$GRAPHIFY_BIN" ]; then else PYTHON="python3" fi -"$PYTHON" -c "import graphify" 2>/dev/null || pip install graphifyy -q --break-system-packages 2>&1 | tail -3 +"$PYTHON" -c "import graphify" 2>/dev/null || "$PYTHON" -m pip install graphifyy -q 2>/dev/null || "$PYTHON" -m pip install graphifyy -q --break-system-packages 2>&1 | tail -3 # Write interpreter path for all subsequent steps mkdir -p graphify-out "$PYTHON" -c "import sys; open('graphify-out/.graphify_python', 'w').write(sys.executable)" diff --git a/graphify/skill-opencode.md b/graphify/skill-opencode.md index 9ced2a61..1f07cca7 100644 --- a/graphify/skill-opencode.md +++ b/graphify/skill-opencode.md @@ -68,7 +68,7 @@ if [ -n "$GRAPHIFY_BIN" ]; then else PYTHON="python3" fi -"$PYTHON" -c "import graphify" 2>/dev/null || pip install graphifyy -q --break-system-packages 2>&1 | tail -3 +"$PYTHON" -c "import graphify" 2>/dev/null || "$PYTHON" -m pip install graphifyy -q 2>/dev/null || "$PYTHON" -m pip install graphifyy -q --break-system-packages 2>&1 | tail -3 # Write interpreter path for all subsequent steps mkdir -p graphify-out "$PYTHON" -c "import sys; open('graphify-out/.graphify_python', 'w').write(sys.executable)" diff --git a/graphify/skill-trae.md b/graphify/skill-trae.md index 73d2979e..c0cfffb9 100644 --- a/graphify/skill-trae.md +++ b/graphify/skill-trae.md @@ -68,7 +68,7 @@ if [ -n "$GRAPHIFY_BIN" ]; then else PYTHON="python3" fi -"$PYTHON" -c "import graphify" 2>/dev/null || pip install graphifyy -q --break-system-packages 2>&1 | tail -3 +"$PYTHON" -c "import graphify" 2>/dev/null || "$PYTHON" -m pip install graphifyy -q 2>/dev/null || "$PYTHON" -m pip install graphifyy -q --break-system-packages 2>&1 | tail -3 # Write interpreter path for all subsequent steps "$PYTHON" -c "import sys; open('graphify-out/.graphify_python', 'w').write(sys.executable)" ``` diff --git a/graphify/skill.md b/graphify/skill.md index e4049e4b..84815de7 100644 --- a/graphify/skill.md +++ b/graphify/skill.md @@ -70,7 +70,7 @@ if [ -n "$GRAPHIFY_BIN" ]; then else PYTHON="python3" fi -"$PYTHON" -c "import graphify" 2>/dev/null || pip install graphifyy -q --break-system-packages 2>&1 | tail -3 +"$PYTHON" -c "import graphify" 2>/dev/null || "$PYTHON" -m pip install graphifyy -q 2>/dev/null || "$PYTHON" -m pip install graphifyy -q --break-system-packages 2>&1 | tail -3 # Write interpreter path for all subsequent steps (persists across invocations) mkdir -p graphify-out "$PYTHON" -c "import sys; open('graphify-out/.graphify_python', 'w').write(sys.executable)"