From 1a9b0ee928704a2e16f19eddec3fc2c42c6f2d99 Mon Sep 17 00:00:00 2001 From: Gitead Date: Sat, 18 Apr 2026 20:55:13 -0400 Subject: [PATCH] =?UTF-8?q?docs:=20update=20Step=208=20=E2=80=94=20Python?= =?UTF-8?q?=20deps=20now=20installed=20automatically=20via=20npm=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 4e8436b4..9ced8901 100644 --- a/README.md +++ b/README.md @@ -112,19 +112,9 @@ npm install ### Step 8 — Install Python dependencies -Each Python service has its own dependencies: +Python dependencies are installed automatically by `npm install` (Step 7) via each service's `postinstall` script. Each service creates its own `.venv` virtual environment — no manual pip commands needed. -```sh -# Selenium automation service -cd apps/SeleniumService -pip3 install -r requirements.txt -cd ../.. - -# Payment OCR service -cd apps/PaymentOCRService -pip3 install -r requirements.txt -cd ../.. -``` +> This approach is required on Debian 13+ where system-wide pip installs are blocked (PEP 668). ### Step 9 — Set up environment variables