From 44a6cc0017e391522b90a5d2a5b2624eb82e9d4b Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 7 Oct 2024 14:30:30 +0300 Subject: [PATCH] dev_scripts: Install pip in dev environments Install pip in dev environments, so that we can use it to vendor PyMuPDf in subsequent commits. --- dev_scripts/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_scripts/env.py b/dev_scripts/env.py index 8f21dda..3c8230d 100755 --- a/dev_scripts/env.py +++ b/dev_scripts/env.py @@ -147,7 +147,7 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* RUN apt-get update \ && apt-get install -y --no-install-recommends dh-python make build-essential \ - git {qt_deps} pipx python3 python3-venv dpkg-dev debhelper python3-setuptools \ + git {qt_deps} pipx python3 python3-pip python3-venv dpkg-dev debhelper python3-setuptools \ && rm -rf /var/lib/apt/lists/* # NOTE: `pipx install poetry` fails on Ubuntu Focal, when installed through APT. By # installing the latest version, we sidestep this issue.