From d100aefc1ffe489d1b2192b86ff2c9e3075b33b1 Mon Sep 17 00:00:00 2001 From: mjanez <96422458+mjanez@users.noreply.github.com> Date: Thu, 18 Apr 2024 09:45:22 +0200 Subject: [PATCH] Replace pip3 with pipx for package installations Using pipx allows us to install Python applications in isolated environments, which helps to avoid dependency conflicts. This change enhances the robustness of our Python environment setup and makes it easier to manage Python applications and their dependencies. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f71e53..f55e386 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,8 @@ docker compose up -d --build ### Without Docker Dependencies: ```bash -python3 -m pip install --user pip3 -pip3 install pdm +python3 -m pip install --user pipx +pipx install pdm pdm install --no-self ```