From 525387e6d57320a3cfd59284b993e15066a98788 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Wed, 25 Mar 2026 11:07:17 +0100 Subject: [PATCH] fix(erpnext): add ~/.local/bin to PATH after uv tool install uv tool install frappe-bench places the bench executable in ~/.local/bin which is not on PATH by default, causing 'command not found' (exit 127) when running bench init. --- install/erpnext-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/erpnext-install.sh b/install/erpnext-install.sh index f0e8e1d6..7f349070 100644 --- a/install/erpnext-install.sh +++ b/install/erpnext-install.sh @@ -54,6 +54,7 @@ msg_ok "Installed wkhtmltopdf" msg_info "Installing Frappe Bench" $STD uv tool install frappe-bench +export PATH="$HOME/.local/bin:$PATH" msg_ok "Installed Frappe Bench" msg_info "Initializing Frappe Bench"