fix(dependencies): install python-pip for all supported distributions
Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / lint-shell (push) Has been cancelled
Mark stable commit / lint-python (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled

- Added python-pip for Arch, python3-pip for CentOS, Debian, Fedora, and Ubuntu.
- Ensures that pip is available for Python package installations across systems.

https://chatgpt.com/share/693fedab-69ac-800f-a8f9-19d504787565
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-15 12:14:48 +01:00
parent 2ca004d056
commit a69e81c44b
5 changed files with 5 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ pacman -S --noconfirm --needed \
curl \ curl \
ca-certificates \ ca-certificates \
python \ python \
python-pip \
xz xz
pacman -Scc --noconfirm pacman -Scc --noconfirm

View File

@@ -14,6 +14,7 @@ dnf -y install \
curl-minimal \ curl-minimal \
ca-certificates \ ca-certificates \
python3 \ python3 \
python3-pip \
sudo \ sudo \
xz xz

View File

@@ -15,6 +15,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \ ca-certificates \
python3 \ python3 \
python3-venv \ python3-venv \
python3-pip \
xz-utils xz-utils
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*

View File

@@ -14,6 +14,7 @@ dnf -y install \
curl \ curl \
ca-certificates \ ca-certificates \
python3 \ python3 \
python3-pip \
xz xz
dnf clean all dnf clean all

View File

@@ -17,6 +17,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
make \ make \
python3 \ python3 \
python3-venv \ python3-venv \
python3-pip \
ca-certificates \ ca-certificates \
xz-utils xz-utils