Skip to content

Python feature fails with Podman #1330

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
Radurer opened this issue Apr 14, 2025 · 3 comments
Open

Python feature fails with Podman #1330

Radurer opened this issue Apr 14, 2025 · 3 comments
Assignees

Comments

@Radurer
Copy link

Radurer commented Apr 14, 2025

Hi. I am trying to run a simple devcontainer with just the official Python feature, using Podman. The image I'm using is an Ubuntu 24.04, which has some certificates installed on it. This is my devcontainer.json configuration:

{
    "name": "Python Container",
    "image": <IMAGE>,
    "runArgs": [
        "--userns=keep-id",
        "--privileged"
    ],
    "containerUser": "vscode",
    "features": {
        "ghcr.io/devcontainers/features/python:1": { }
    }
}

These are the logs. Has anyone had this fail with Podman?

[12145 ms] Resolving Feature dependencies for 'ghcr.io/devcontainers/features/python:1'...
[12146 ms] * Processing feature: ghcr.io/devcontainers/features/python:1
[12997 ms] Start: Run: docker-credential-secret get
[14293 ms] * Processing feature: ghcr.io/devcontainers/features/common-utils
[14841 ms] * Processing feature: ghcr.io/devcontainers/features/oryx
[15479 ms] Soft-dependency 'ghcr.io/devcontainers/features/oryx' is not required.  Removing from installation order...
[15479 ms] Soft-dependency 'ghcr.io/devcontainers/features/common-utils' is not required.  Removing from installation order...
[15479 ms] * Fetching feature: python_0_oci
[16500 ms] Files to omit: ''
[16506 ms] * Fetched feature: python_0_oci version 1.7.1
[16510 ms] Start: Run: podman buildx build --load --build-context dev_containers_feature_content_source=/tmp/devcontainercli-developer/container-features/0.75.0-1744611826103 --build-arg _DEV_CONTAINERS_BASE_IMAGE=<IMAGE> --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -f /tmp/devcontainercli-developer/container-features/0.75.0-1744611826103/Dockerfile.extended -t vsc-dx1-devcontainers-58939dc29c542fa2adec902f2af931d7ccd951f862eced5fe35f005ed2abc389-features /tmp/devcontainercli-developer/empty-folder
[1/2] STEP 1/4: FROM <IMAGE> AS dev_containers_feature_content_normalize
[1/2] STEP 2/4: USER root
--> Using cache 142c41b3741f93b47dc827f9d34d338e9b0e59efc28602004a3d45d7484d6db1
--> 142c41b3741f
[1/2] STEP 3/4: COPY --from=dev_containers_feature_content_source devcontainer-features.builtin.env /tmp/build-features/
--> Using cache 3171ec5ede092843952a77613a1a5a0fe5417ea3227a8ff336f6b3a8b07b4451
--> 3171ec5ede09
[1/2] STEP 4/4: RUN chmod -R 0755 /tmp/build-features/
--> Using cache d5e3c9aa67d37047bd02db7f7c92aa7e54a646966c80acf735f91a20b84557ea
--> d5e3c9aa67d3
[2/2] STEP 1/13: FROM <IMAGE> AS dev_containers_target_stage
[2/2] STEP 2/13: USER root
--> Using cache 142c41b3741f93b47dc827f9d34d338e9b0e59efc28602004a3d45d7484d6db1
--> 142c41b3741f
[2/2] STEP 3/13: RUN mkdir -p /tmp/dev-container-features
--> Using cache 8c864a49462c695aabeea57ac0e30f8089aa8dc02e17e94b51a2d544ac82a58f
--> 8c864a49462c
[2/2] STEP 4/13: COPY --from=dev_containers_feature_content_normalize /tmp/build-features/ /tmp/dev-container-features
--> Using cache dcd67abcbc02b50f9cbed5d1638f107ad16492eb6be274bcb05ae8fac2dc7a67
--> dcd67abcbc02
[2/2] STEP 5/13: RUN echo "_CONTAINER_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'vscode' || grep -E '^vscode|^[^:]*:[^:]*:vscode:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env && echo "_REMOTE_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'vscode' || grep -E '^vscode|^[^:]*:[^:]*:vscode:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env
--> Using cache 2de34a5022f9df374500b6748e5a1179cb0f947e8898a9328ea043c0a1d8acd4
--> 2de34a5022f9
[2/2] STEP 6/13: ENV PYTHON_PATH="/usr/local/python/current"
--> Using cache a4ee846e6fef80a4386e73ba2c6b867ac7813b4afae161a0ce3ef089c459ecca
--> a4ee846e6fef
[2/2] STEP 7/13: ENV PIPX_HOME="/usr/local/py-utils"
--> Using cache a57d835742b1ee7226d9d4f81d22c39f3ce456c4921d31f2971fb1328e506e6b
--> a57d835742b1
[2/2] STEP 8/13: ENV PIPX_BIN_DIR="/usr/local/py-utils/bin"
--> Using cache 8c1c05d314861009956d5cefb3d61759d53563ac60a2045aaefc8a4c076c8f14
--> 8c1c05d31486
[2/2] STEP 9/13: ENV PATH="/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/jupyter:${PATH}"
--> 36f9792605fa
[2/2] STEP 10/13: RUN --mount=type=bind,from=dev_containers_feature_content_source,source=python_0,target=/tmp/build-features-src/python_0,z     cp -ar /tmp/build-features-src/python_0 /tmp/dev-container-features  && chmod -R 0755 /tmp/dev-container-features/python_0  && cd /tmp/dev-container-features/python_0  && chmod +x ./devcontainer-features-install.sh  && ./devcontainer-features-install.sh  && rm -rf /tmp/dev-container-features/python_0
===========================================================================
Feature       : Python
Description   : Installs the provided version of Python, as well as PIPX, and other common Python utilities.  JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.
Id            : ghcr.io/devcontainers/features/python
Version       : 1.7.1
Documentation : https://github.com/devcontainers/features/tree/main/src/python
Options       :
    VERSION="os-provided"
    INSTALLTOOLS="true"
    TOOLSTOINSTALL="flake8,autopep8,black,yapf,mypy,pydocstyle,pycodestyle,bandit,pipenv,virtualenv,pytest,pylint"
    OPTIMIZE="false"
    ENABLESHARED="false"
    INSTALLPATH="/usr/local/python"
    INSTALLJUPYTERLAB="false"
    CONFIGUREJUPYTERLABALLOWORIGIN=""
    HTTPPROXY=""
===========================================================================
find: '/var/lib/apt/lists/*': No such file or directory
Running apt-get update...
Get:1 http://archive.ubuntu.com/ubuntu noble InRelease [256 kB]
Get:2 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
Get:4 http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages [19.3 MB]
Get:5 http://archive.ubuntu.com/ubuntu noble/multiverse amd64 Packages [331 kB]
Get:6 http://archive.ubuntu.com/ubuntu noble/restricted amd64 Packages [117 kB]
Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 Packages [1808 kB]
Get:8 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [1132 kB]
Get:9 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [26.4 kB]
Get:10 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1366 kB]
Get:11 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1258 kB]
Get:12 http://archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [48.0 kB]
Get:13 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [30.9 kB]
Fetched 25.9 MB in 52s (495 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
ca-certificates is already the newest version (20240203).
curl is already the newest version (8.5.0-2ubuntu10.6).
gcc is already the newest version (4:13.2.0-7ubuntu1).
gcc set to manually installed.
libssl-dev is already the newest version (3.0.13-0ubuntu3.5).
make is already the newest version (4.3-4.1build2).
make set to manually installed.
tar is already the newest version (1.35+dfsg-3build1).
zlib1g-dev is already the newest version (1:1.3.dfsg-3.1ubuntu2.1).
The following additional packages will be installed:
  fontconfig-config fonts-dejavu-core fonts-dejavu-mono gnupg gnupg-utils gpg
  gpg-agent gpgconf gpgsm gpgv icu-devtools keyboxd libbrotli-dev
  libevent-2.1-7t64 libfontconfig-dev libfontconfig1 libfontconfig1-dev
  libfreetype-dev libfreetype6 libgcrypt20-dev libgmp-dev libgmpxx4ldbl
  libgnutls-dane0t64 libgnutls-openssl27t64 libgnutls28-dev libgpg-error-dev
  libicu-dev libidn2-dev liblzma5 libncurses6 libnspr4 libnspr4-dev libnss3
  libnss3-dev libp11-kit-dev libpkgconf3 libpng-dev libpng16-16t64
  libpthread-stubs0-dev libtasn1-6-dev libtcl8.6 libtk8.6 libunbound8 libx11-6
  libx11-data libx11-dev libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev
  libxdmcp6 libxext-dev libxext6 libxft-dev libxft2 libxmlsec1t64
  libxmlsec1t64-gcrypt libxmlsec1t64-gnutls libxmlsec1t64-nss
  libxmlsec1t64-openssl libxrender-dev libxrender1 libxslt1-dev libxslt1.1
  libxss-dev libxss1 nettle-dev pkgconf pkgconf-bin tcl tcl-dev tcl8.6
  tcl8.6-dev tk tk8.6 tk8.6-dev x11-common x11proto-core-dev x11proto-dev
  xorg-sgml-doctools xtrans-dev
Suggested packages:
  dbus-user-session libpam-systemd pinentry-gnome3 tor parcimonie xloadimage
  gpg-wks-server scdaemon freetype2-doc libgcrypt20-doc gmp-doc libgmp10-doc
  libmpfr-dev dns-root-data gnutls-bin gnutls-doc icu-doc liblzma-doc
  ncurses-doc p11-kit-doc readline-doc sqlite3-doc libx11-doc libxcb-doc
  libxext-doc tcl-doc tcl-tclreadline tcl8.6-doc tk-doc tk8.6-doc
Recommended packages:
  gnupg-l10n gpg-wks-client bzip2-doc libgpm2 libpng-tools libtasn1-doc
The following NEW packages will be installed:
  fontconfig-config fonts-dejavu-core fonts-dejavu-mono icu-devtools
  libbrotli-dev libbz2-dev libevent-2.1-7t64 libffi-dev libfontconfig-dev
  libfontconfig1 libfontconfig1-dev libfreetype-dev libfreetype6
  libgcrypt20-dev libgdbm-dev libgmp-dev libgmpxx4ldbl libgnutls-dane0t64
  libgnutls-openssl27t64 libgnutls28-dev libgpg-error-dev libicu-dev
  libidn2-dev liblzma-dev libncurses-dev libncurses6 libnspr4 libnspr4-dev
  libnss3 libnss3-dev libp11-kit-dev libpkgconf3 libpng-dev libpng16-16t64
  libpthread-stubs0-dev libreadline-dev libsqlite3-dev libtasn1-6-dev
  libtcl8.6 libtk8.6 libunbound8 libx11-6 libx11-data libx11-dev libxau-dev
  libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6
  libxft-dev libxft2 libxml2-dev libxmlsec1-dev libxmlsec1t64
  libxmlsec1t64-gcrypt libxmlsec1t64-gnutls libxmlsec1t64-nss
  libxmlsec1t64-openssl libxrender-dev libxrender1 libxslt1-dev libxslt1.1
  libxss-dev libxss1 nettle-dev pkgconf pkgconf-bin tcl tcl-dev tcl8.6
  tcl8.6-dev tk tk-dev tk8.6 tk8.6-dev uuid-dev x11-common x11proto-core-dev
  x11proto-dev xorg-sgml-doctools xtrans-dev
The following packages will be upgraded:
  dirmngr gnupg gnupg-utils gnupg2 gpg gpg-agent gpgconf gpgsm gpgv keyboxd
  liblzma5 xz-utils
12 upgraded, 84 newly installed, 0 to remove and 16 not upgraded.
Need to get 34.5 MB of archives.
After this operation, 124 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 liblzma5 amd64 5.6.1+really5.4.5-1ubuntu0.2 [127 kB]
Get:2 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 dirmngr amd64 2.4.4-2ubuntu17.2 [323 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gnupg-utils amd64 2.4.4-2ubuntu17.2 [109 kB]
Get:4 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gpgsm amd64 2.4.4-2ubuntu17.2 [232 kB]
Get:5 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gpg-agent amd64 2.4.4-2ubuntu17.2 [227 kB]
Get:6 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gpg amd64 2.4.4-2ubuntu17.2 [565 kB]
Get:7 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gpgconf amd64 2.4.4-2ubuntu17.2 [103 kB]
Get:8 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gnupg all 2.4.4-2ubuntu17.2 [359 kB]
Get:9 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 keyboxd amd64 2.4.4-2ubuntu17.2 [78.3 kB]
Get:10 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gpgv amd64 2.4.4-2ubuntu17.2 [158 kB]
Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 libncurses6 amd64 6.4+20240113-1ubuntu2 [112 kB]
Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 libpng16-16t64 amd64 1.6.43-5build1 [187 kB]
Get:13 http://archive.ubuntu.com/ubuntu noble/main amd64 libxau6 amd64 1:1.0.9-1build6 [7160 B]
Get:14 http://archive.ubuntu.com/ubuntu noble/main amd64 libxdmcp6 amd64 1:1.1.3-0ubuntu6 [10.3 kB]
Get:15 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb1 amd64 1.15-1ubuntu2 [47.7 kB]
Get:16 http://archive.ubuntu.com/ubuntu noble/main amd64 libx11-data all 2:1.8.7-1build1 [115 kB]
Get:17 http://archive.ubuntu.com/ubuntu noble/main amd64 libx11-6 amd64 2:1.8.7-1build1 [650 kB]
Get:18 http://archive.ubuntu.com/ubuntu noble/main amd64 libxext6 amd64 2:1.3.4-1build2 [30.4 kB]
Get:19 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xz-utils amd64 5.6.1+really5.4.5-1ubuntu0.2 [267 kB]
Get:20 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-dejavu-mono all 2.37-8 [502 kB]
Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-dejavu-core all 2.37-8 [835 kB]
Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 fontconfig-config amd64 2.15.0-1.1ubuntu2 [37.3 kB]
Get:23 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 icu-devtools amd64 74.2-1ubuntu3.1 [212 kB]
Get:24 http://archive.ubuntu.com/ubuntu noble/main amd64 libbrotli-dev amd64 1.1.0-2build2 [353 kB]
Get:25 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libbz2-dev amd64 1.0.8-5.1build0.1 [33.6 kB]
Get:26 http://archive.ubuntu.com/ubuntu noble/main amd64 libevent-2.1-7t64 amd64 2.1.12-stable-9ubuntu2 [145 kB]
Get:27 http://archive.ubuntu.com/ubuntu noble/main amd64 libfreetype6 amd64 2.13.2+dfsg-1build3 [402 kB]
Get:28 http://archive.ubuntu.com/ubuntu noble/main amd64 libfontconfig1 amd64 2.15.0-1.1ubuntu2 [139 kB]
Get:29 http://archive.ubuntu.com/ubuntu noble/main amd64 libpng-dev amd64 1.6.43-5build1 [264 kB]
Get:30 http://archive.ubuntu.com/ubuntu noble/main amd64 libfreetype-dev amd64 2.13.2+dfsg-1build3 [575 kB]
Get:31 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 uuid-dev amd64 2.39.3-9ubuntu6.2 [33.5 kB]
Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 libpkgconf3 amd64 1.8.1-2build1 [30.7 kB]
Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 pkgconf-bin amd64 1.8.1-2build1 [20.7 kB]
Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 pkgconf amd64 1.8.1-2build1 [16.8 kB]
Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libfontconfig-dev amd64 2.15.0-1.1ubuntu2 [161 kB]
Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 libfontconfig1-dev amd64 2.15.0-1.1ubuntu2 [1840 B]
Get:37 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgpg-error-dev amd64 1.47-3build2.1 [128 kB]
Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libgcrypt20-dev amd64 1.10.3-2build1 [592 kB]
Get:39 http://archive.ubuntu.com/ubuntu noble/main amd64 libgdbm-dev amd64 1.23-5.1build1 [116 kB]
Get:40 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgmpxx4ldbl amd64 2:6.3.0+dfsg-2ubuntu6.1 [9888 B]
Get:41 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgmp-dev amd64 2:6.3.0+dfsg-2ubuntu6.1 [340 kB]
Get:42 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libunbound8 amd64 1.19.2-1ubuntu3.4 [442 kB]
Get:43 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgnutls-dane0t64 amd64 3.8.3-1.1ubuntu3.3 [23.5 kB]
Get:44 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgnutls-openssl27t64 amd64 3.8.3-1.1ubuntu3.3 [23.8 kB]
Get:45 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libidn2-dev amd64 2.3.7-2build1.1 [121 kB]
Get:46 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libp11-kit-dev amd64 0.25.3-4ubuntu2.1 [22.7 kB]
Get:47 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libtasn1-6-dev amd64 4.19.0-3ubuntu0.24.04.1 [90.8 kB]
Get:48 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 nettle-dev amd64 3.9.1-2.2build1.1 [1154 kB]
Get:49 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgnutls28-dev amd64 3.8.3-1.1ubuntu3.3 [1056 kB]
Get:50 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libicu-dev amd64 74.2-1ubuntu3.1 [11.9 MB]
Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libncurses-dev amd64 6.4+20240113-1ubuntu2 [384 kB]
Get:52 http://archive.ubuntu.com/ubuntu noble/main amd64 libnspr4 amd64 2:4.35-1.1build1 [117 kB]
Get:53 http://archive.ubuntu.com/ubuntu noble/main amd64 libnspr4-dev amd64 2:4.35-1.1build1 [219 kB]
Get:54 http://archive.ubuntu.com/ubuntu noble/main amd64 libnss3 amd64 2:3.98-1build1 [1445 kB]
Get:55 http://archive.ubuntu.com/ubuntu noble/main amd64 libnss3-dev amd64 2:3.98-1build1 [253 kB]
Get:56 http://archive.ubuntu.com/ubuntu noble/main amd64 libpthread-stubs0-dev amd64 0.4-1build3 [4746 B]
Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 libreadline-dev amd64 8.2-4build1 [167 kB]
Get:58 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libsqlite3-dev amd64 3.45.1-1ubuntu2.1 [912 kB]
Get:59 http://archive.ubuntu.com/ubuntu noble/main amd64 libtcl8.6 amd64 8.6.14+dfsg-1build1 [988 kB]
Get:60 http://archive.ubuntu.com/ubuntu noble/main amd64 libxrender1 amd64 1:0.9.10-1.1build1 [19.0 kB]
Get:61 http://archive.ubuntu.com/ubuntu noble/main amd64 libxft2 amd64 2.3.6-1build1 [45.3 kB]
Get:62 http://archive.ubuntu.com/ubuntu noble/main amd64 x11-common all 1:7.7+23ubuntu3 [21.7 kB]
Get:63 http://archive.ubuntu.com/ubuntu noble/main amd64 libxss1 amd64 1:1.2.3-1build3 [7204 B]
Get:64 http://archive.ubuntu.com/ubuntu noble/main amd64 libtk8.6 amd64 8.6.14-1build1 [779 kB]
Get:65 http://archive.ubuntu.com/ubuntu noble/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB]
Get:66 http://archive.ubuntu.com/ubuntu noble/main amd64 x11proto-dev all 2023.2-1 [602 kB]
Get:67 http://archive.ubuntu.com/ubuntu noble/main amd64 libxau-dev amd64 1:1.0.9-1build6 [9570 B]
Get:68 http://archive.ubuntu.com/ubuntu noble/main amd64 x11proto-core-dev all 2023.2-1 [2444 B]
Get:69 http://archive.ubuntu.com/ubuntu noble/main amd64 libxdmcp-dev amd64 1:1.1.3-0ubuntu6 [26.5 kB]
Get:70 http://archive.ubuntu.com/ubuntu noble/main amd64 xtrans-dev all 1.4.0-1 [68.9 kB]
Get:71 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb1-dev amd64 1.15-1ubuntu2 [85.8 kB]
Get:72 http://archive.ubuntu.com/ubuntu noble/main amd64 libx11-dev amd64 2:1.8.7-1build1 [732 kB]
Get:73 http://archive.ubuntu.com/ubuntu noble/main amd64 libxext-dev amd64 2:1.3.4-1build2 [83.5 kB]
Get:74 http://archive.ubuntu.com/ubuntu noble/main amd64 libxrender-dev amd64 1:0.9.10-1.1build1 [26.3 kB]
Get:75 http://archive.ubuntu.com/ubuntu noble/main amd64 libxft-dev amd64 2.3.6-1build1 [64.3 kB]
Get:76 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libxml2-dev amd64 2.9.14+dfsg-1.3ubuntu3.2 [780 kB]
Get:77 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libxslt1.1 amd64 1.1.39-0exp1ubuntu0.24.04.2 [167 kB]
Get:78 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmlsec1t64 amd64 1.2.39-5build2 [153 kB]
Get:79 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmlsec1t64-gcrypt amd64 1.2.39-5build2 [42.8 kB]
Get:80 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmlsec1t64-gnutls amd64 1.2.39-5build2 [35.0 kB]
Get:81 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmlsec1t64-nss amd64 1.2.39-5build2 [63.0 kB]
Get:82 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmlsec1t64-openssl amd64 1.2.39-5build2 [84.1 kB]
Get:83 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libxslt1-dev amd64 1.1.39-0exp1ubuntu0.24.04.2 [91.9 kB]
Get:84 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmlsec1-dev amd64 1.2.39-5build2 [435 kB]
Get:85 http://archive.ubuntu.com/ubuntu noble/main amd64 libxss-dev amd64 1:1.2.3-1build3 [12.1 kB]
Get:86 http://archive.ubuntu.com/ubuntu noble/main amd64 tcl8.6 amd64 8.6.14+dfsg-1build1 [14.7 kB]
Get:87 http://archive.ubuntu.com/ubuntu noble/main amd64 tcl amd64 8.6.14build1 [4124 B]
Get:88 http://archive.ubuntu.com/ubuntu noble/main amd64 tcl8.6-dev amd64 8.6.14+dfsg-1build1 [1000 kB]
Get:89 http://archive.ubuntu.com/ubuntu noble/main amd64 tcl-dev amd64 8.6.14build1 [5782 B]
Get:90 http://archive.ubuntu.com/ubuntu noble/main amd64 tk8.6 amd64 8.6.14-1build1 [12.5 kB]
Get:91 http://archive.ubuntu.com/ubuntu noble/main amd64 tk amd64 8.6.14build1 [3076 B]
Get:92 http://archive.ubuntu.com/ubuntu noble/main amd64 tk8.6-dev amd64 8.6.14-1build1 [788 kB]
Get:93 http://archive.ubuntu.com/ubuntu noble/main amd64 tk-dev amd64 8.6.14build1 [2914 B]
Get:94 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 gnupg2 all 2.4.4-2ubuntu17.2 [4750 B]
Get:95 http://archive.ubuntu.com/ubuntu noble/main amd64 libffi-dev amd64 3.4.6-1build1 [62.8 kB]
Get:96 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 liblzma-dev amd64 5.6.1+really5.4.5-1ubuntu0.2 [176 kB]
Fetched 34.5 MB in 1min 11s (487 kB/s)
(Reading database ... 20529 files and directories currently installed.)
Preparing to unpack .../liblzma5_5.6.1+really5.4.5-1ubuntu0.2_amd64.deb ...
Unpacking liblzma5:amd64 (5.6.1+really5.4.5-1ubuntu0.2) over (5.6.1+really5.4.5-1build0.1) ...
Setting up liblzma5:amd64 (5.6.1+really5.4.5-1ubuntu0.2) ...
(Reading database ... 20529 files and directories currently installed.)
Preparing to unpack .../0-dirmngr_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking dirmngr (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../1-gnupg-utils_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking gnupg-utils (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../2-gpgsm_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking gpgsm (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../3-gpg-agent_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking gpg-agent (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../4-gpg_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking gpg (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../5-gpgconf_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking gpgconf (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../6-gnupg_2.4.4-2ubuntu17.2_all.deb ...
Unpacking gnupg (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../7-keyboxd_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking keyboxd (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Preparing to unpack .../8-gpgv_2.4.4-2ubuntu17.2_amd64.deb ...
Unpacking gpgv (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Setting up gpgv (2.4.4-2ubuntu17.2) ...
Selecting previously unselected package libncurses6:amd64.
(Reading database ... 20529 files and directories currently installed.)
Preparing to unpack .../00-libncurses6_6.4+20240113-1ubuntu2_amd64.deb ...
Unpacking libncurses6:amd64 (6.4+20240113-1ubuntu2) ...
Selecting previously unselected package libpng16-16t64:amd64.
Preparing to unpack .../01-libpng16-16t64_1.6.43-5build1_amd64.deb ...
Unpacking libpng16-16t64:amd64 (1.6.43-5build1) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../02-libxau6_1%3a1.0.9-1build6_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.9-1build6) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../03-libxdmcp6_1%3a1.1.3-0ubuntu6_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.3-0ubuntu6) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../04-libxcb1_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb1:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../05-libx11-data_2%3a1.8.7-1build1_all.deb ...
Unpacking libx11-data (2:1.8.7-1build1) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../06-libx11-6_2%3a1.8.7-1build1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.8.7-1build1) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../07-libxext6_2%3a1.3.4-1build2_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.4-1build2) ...
Preparing to unpack .../08-xz-utils_5.6.1+really5.4.5-1ubuntu0.2_amd64.deb ...
Unpacking xz-utils (5.6.1+really5.4.5-1ubuntu0.2) over (5.6.1+really5.4.5-1build0.1) ...
Selecting previously unselected package fonts-dejavu-mono.
Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...
Unpacking fonts-dejavu-mono (2.37-8) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...
Unpacking fonts-dejavu-core (2.37-8) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../11-fontconfig-config_2.15.0-1.1ubuntu2_amd64.deb ...
Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../12-icu-devtools_74.2-1ubuntu3.1_amd64.deb ...
Unpacking icu-devtools (74.2-1ubuntu3.1) ...
Selecting previously unselected package libbrotli-dev:amd64.
Preparing to unpack .../13-libbrotli-dev_1.1.0-2build2_amd64.deb ...
Unpacking libbrotli-dev:amd64 (1.1.0-2build2) ...
Selecting previously unselected package libbz2-dev:amd64.
Preparing to unpack .../14-libbz2-dev_1.0.8-5.1build0.1_amd64.deb ...
Unpacking libbz2-dev:amd64 (1.0.8-5.1build0.1) ...
Selecting previously unselected package libevent-2.1-7t64:amd64.
Preparing to unpack .../15-libevent-2.1-7t64_2.1.12-stable-9ubuntu2_amd64.deb ...
Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-9ubuntu2) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../16-libfreetype6_2.13.2+dfsg-1build3_amd64.deb ...
Unpacking libfreetype6:amd64 (2.13.2+dfsg-1build3) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../17-libfontconfig1_2.15.0-1.1ubuntu2_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.15.0-1.1ubuntu2) ...
Selecting previously unselected package libpng-dev:amd64.
Preparing to unpack .../18-libpng-dev_1.6.43-5build1_amd64.deb ...
Unpacking libpng-dev:amd64 (1.6.43-5build1) ...
Selecting previously unselected package libfreetype-dev:amd64.
Preparing to unpack .../19-libfreetype-dev_2.13.2+dfsg-1build3_amd64.deb ...
Unpacking libfreetype-dev:amd64 (2.13.2+dfsg-1build3) ...
Selecting previously unselected package uuid-dev:amd64.
Preparing to unpack .../20-uuid-dev_2.39.3-9ubuntu6.2_amd64.deb ...
Unpacking uuid-dev:amd64 (2.39.3-9ubuntu6.2) ...
Selecting previously unselected package libpkgconf3:amd64.
Preparing to unpack .../21-libpkgconf3_1.8.1-2build1_amd64.deb ...
Unpacking libpkgconf3:amd64 (1.8.1-2build1) ...
Selecting previously unselected package pkgconf-bin.
Preparing to unpack .../22-pkgconf-bin_1.8.1-2build1_amd64.deb ...
Unpacking pkgconf-bin (1.8.1-2build1) ...
Selecting previously unselected package pkgconf:amd64.
Preparing to unpack .../23-pkgconf_1.8.1-2build1_amd64.deb ...
Unpacking pkgconf:amd64 (1.8.1-2build1) ...
Selecting previously unselected package libfontconfig-dev:amd64.
Preparing to unpack .../24-libfontconfig-dev_2.15.0-1.1ubuntu2_amd64.deb ...
Unpacking libfontconfig-dev:amd64 (2.15.0-1.1ubuntu2) ...
Selecting previously unselected package libfontconfig1-dev:amd64.
Preparing to unpack .../25-libfontconfig1-dev_2.15.0-1.1ubuntu2_amd64.deb ...
Unpacking libfontconfig1-dev:amd64 (2.15.0-1.1ubuntu2) ...
Selecting previously unselected package libgpg-error-dev.
Preparing to unpack .../26-libgpg-error-dev_1.47-3build2.1_amd64.deb ...
Unpacking libgpg-error-dev (1.47-3build2.1) ...
Selecting previously unselected package libgcrypt20-dev.
Preparing to unpack .../27-libgcrypt20-dev_1.10.3-2build1_amd64.deb ...
Unpacking libgcrypt20-dev (1.10.3-2build1) ...
Selecting previously unselected package libgdbm-dev:amd64.
Preparing to unpack .../28-libgdbm-dev_1.23-5.1build1_amd64.deb ...
Unpacking libgdbm-dev:amd64 (1.23-5.1build1) ...
Selecting previously unselected package libgmpxx4ldbl:amd64.
Preparing to unpack .../29-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ...
Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
Selecting previously unselected package libgmp-dev:amd64.
Preparing to unpack .../30-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ...
Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
Selecting previously unselected package libunbound8:amd64.
Preparing to unpack .../31-libunbound8_1.19.2-1ubuntu3.4_amd64.deb ...
Unpacking libunbound8:amd64 (1.19.2-1ubuntu3.4) ...
Selecting previously unselected package libgnutls-dane0t64:amd64.
Preparing to unpack .../32-libgnutls-dane0t64_3.8.3-1.1ubuntu3.3_amd64.deb ...
Unpacking libgnutls-dane0t64:amd64 (3.8.3-1.1ubuntu3.3) ...
Selecting previously unselected package libgnutls-openssl27t64:amd64.
Preparing to unpack .../33-libgnutls-openssl27t64_3.8.3-1.1ubuntu3.3_amd64.deb ...
Unpacking libgnutls-openssl27t64:amd64 (3.8.3-1.1ubuntu3.3) ...
Selecting previously unselected package libidn2-dev:amd64.
Preparing to unpack .../34-libidn2-dev_2.3.7-2build1.1_amd64.deb ...
Unpacking libidn2-dev:amd64 (2.3.7-2build1.1) ...
Selecting previously unselected package libp11-kit-dev:amd64.
Preparing to unpack .../35-libp11-kit-dev_0.25.3-4ubuntu2.1_amd64.deb ...
Unpacking libp11-kit-dev:amd64 (0.25.3-4ubuntu2.1) ...
Selecting previously unselected package libtasn1-6-dev:amd64.
Preparing to unpack .../36-libtasn1-6-dev_4.19.0-3ubuntu0.24.04.1_amd64.deb ...
Unpacking libtasn1-6-dev:amd64 (4.19.0-3ubuntu0.24.04.1) ...
Selecting previously unselected package nettle-dev:amd64.
Preparing to unpack .../37-nettle-dev_3.9.1-2.2build1.1_amd64.deb ...
Unpacking nettle-dev:amd64 (3.9.1-2.2build1.1) ...
Selecting previously unselected package libgnutls28-dev:amd64.
Preparing to unpack .../38-libgnutls28-dev_3.8.3-1.1ubuntu3.3_amd64.deb ...
Unpacking libgnutls28-dev:amd64 (3.8.3-1.1ubuntu3.3) ...
Selecting previously unselected package libicu-dev:amd64.
Preparing to unpack .../39-libicu-dev_74.2-1ubuntu3.1_amd64.deb ...
Unpacking libicu-dev:amd64 (74.2-1ubuntu3.1) ...
Selecting previously unselected package libncurses-dev:amd64.
Preparing to unpack .../40-libncurses-dev_6.4+20240113-1ubuntu2_amd64.deb ...
Unpacking libncurses-dev:amd64 (6.4+20240113-1ubuntu2) ...
Selecting previously unselected package libnspr4:amd64.
Preparing to unpack .../41-libnspr4_2%3a4.35-1.1build1_amd64.deb ...
Unpacking libnspr4:amd64 (2:4.35-1.1build1) ...
Selecting previously unselected package libnspr4-dev.
Preparing to unpack .../42-libnspr4-dev_2%3a4.35-1.1build1_amd64.deb ...
Unpacking libnspr4-dev (2:4.35-1.1build1) ...
Selecting previously unselected package libnss3:amd64.
Preparing to unpack .../43-libnss3_2%3a3.98-1build1_amd64.deb ...
Unpacking libnss3:amd64 (2:3.98-1build1) ...
Selecting previously unselected package libnss3-dev:amd64.
Preparing to unpack .../44-libnss3-dev_2%3a3.98-1build1_amd64.deb ...
Unpacking libnss3-dev:amd64 (2:3.98-1build1) ...
Selecting previously unselected package libpthread-stubs0-dev:amd64.
Preparing to unpack .../45-libpthread-stubs0-dev_0.4-1build3_amd64.deb ...
Unpacking libpthread-stubs0-dev:amd64 (0.4-1build3) ...
Selecting previously unselected package libreadline-dev:amd64.
Preparing to unpack .../46-libreadline-dev_8.2-4build1_amd64.deb ...
Unpacking libreadline-dev:amd64 (8.2-4build1) ...
Selecting previously unselected package libsqlite3-dev:amd64.
Preparing to unpack .../47-libsqlite3-dev_3.45.1-1ubuntu2.1_amd64.deb ...
Unpacking libsqlite3-dev:amd64 (3.45.1-1ubuntu2.1) ...
Selecting previously unselected package libtcl8.6:amd64.
Preparing to unpack .../48-libtcl8.6_8.6.14+dfsg-1build1_amd64.deb ...
Unpacking libtcl8.6:amd64 (8.6.14+dfsg-1build1) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../49-libxrender1_1%3a0.9.10-1.1build1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1.1build1) ...
Selecting previously unselected package libxft2:amd64.
Preparing to unpack .../50-libxft2_2.3.6-1build1_amd64.deb ...
Unpacking libxft2:amd64 (2.3.6-1build1) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../51-x11-common_1%3a7.7+23ubuntu3_all.deb ...
Unpacking x11-common (1:7.7+23ubuntu3) ...
Selecting previously unselected package libxss1:amd64.
Preparing to unpack .../52-libxss1_1%3a1.2.3-1build3_amd64.deb ...
Unpacking libxss1:amd64 (1:1.2.3-1build3) ...
Selecting previously unselected package libtk8.6:amd64.
Preparing to unpack .../53-libtk8.6_8.6.14-1build1_amd64.deb ...
Unpacking libtk8.6:amd64 (8.6.14-1build1) ...
Selecting previously unselected package xorg-sgml-doctools.
Preparing to unpack .../54-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ...
Unpacking xorg-sgml-doctools (1:1.11-1.1) ...
Selecting previously unselected package x11proto-dev.
Preparing to unpack .../55-x11proto-dev_2023.2-1_all.deb ...
Unpacking x11proto-dev (2023.2-1) ...
Selecting previously unselected package libxau-dev:amd64.
Preparing to unpack .../56-libxau-dev_1%3a1.0.9-1build6_amd64.deb ...
Unpacking libxau-dev:amd64 (1:1.0.9-1build6) ...
Selecting previously unselected package x11proto-core-dev.
Preparing to unpack .../57-x11proto-core-dev_2023.2-1_all.deb ...
Unpacking x11proto-core-dev (2023.2-1) ...
Selecting previously unselected package libxdmcp-dev:amd64.
Preparing to unpack .../58-libxdmcp-dev_1%3a1.1.3-0ubuntu6_amd64.deb ...
Unpacking libxdmcp-dev:amd64 (1:1.1.3-0ubuntu6) ...
Selecting previously unselected package xtrans-dev.
Preparing to unpack .../59-xtrans-dev_1.4.0-1_all.deb ...
Unpacking xtrans-dev (1.4.0-1) ...
Selecting previously unselected package libxcb1-dev:amd64.
Preparing to unpack .../60-libxcb1-dev_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb1-dev:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libx11-dev:amd64.
Preparing to unpack .../61-libx11-dev_2%3a1.8.7-1build1_amd64.deb ...
Unpacking libx11-dev:amd64 (2:1.8.7-1build1) ...
Selecting previously unselected package libxext-dev:amd64.
Preparing to unpack .../62-libxext-dev_2%3a1.3.4-1build2_amd64.deb ...
Unpacking libxext-dev:amd64 (2:1.3.4-1build2) ...
Selecting previously unselected package libxrender-dev:amd64.
Preparing to unpack .../63-libxrender-dev_1%3a0.9.10-1.1build1_amd64.deb ...
Unpacking libxrender-dev:amd64 (1:0.9.10-1.1build1) ...
Selecting previously unselected package libxft-dev:amd64.
Preparing to unpack .../64-libxft-dev_2.3.6-1build1_amd64.deb ...
Unpacking libxft-dev:amd64 (2.3.6-1build1) ...
Selecting previously unselected package libxml2-dev:amd64.
Preparing to unpack .../65-libxml2-dev_2.9.14+dfsg-1.3ubuntu3.2_amd64.deb ...
Unpacking libxml2-dev:amd64 (2.9.14+dfsg-1.3ubuntu3.2) ...
Selecting previously unselected package libxslt1.1:amd64.
Preparing to unpack .../66-libxslt1.1_1.1.39-0exp1ubuntu0.24.04.2_amd64.deb ...
Unpacking libxslt1.1:amd64 (1.1.39-0exp1ubuntu0.24.04.2) ...
Selecting previously unselected package libxmlsec1t64:amd64.
Preparing to unpack .../67-libxmlsec1t64_1.2.39-5build2_amd64.deb ...
Unpacking libxmlsec1t64:amd64 (1.2.39-5build2) ...
Selecting previously unselected package libxmlsec1t64-gcrypt:amd64.
Preparing to unpack .../68-libxmlsec1t64-gcrypt_1.2.39-5build2_amd64.deb ...
Unpacking libxmlsec1t64-gcrypt:amd64 (1.2.39-5build2) ...
Selecting previously unselected package libxmlsec1t64-gnutls:amd64.
Preparing to unpack .../69-libxmlsec1t64-gnutls_1.2.39-5build2_amd64.deb ...
Unpacking libxmlsec1t64-gnutls:amd64 (1.2.39-5build2) ...
Selecting previously unselected package libxmlsec1t64-nss:amd64.
Preparing to unpack .../70-libxmlsec1t64-nss_1.2.39-5build2_amd64.deb ...
Unpacking libxmlsec1t64-nss:amd64 (1.2.39-5build2) ...
Selecting previously unselected package libxmlsec1t64-openssl:amd64.
Preparing to unpack .../71-libxmlsec1t64-openssl_1.2.39-5build2_amd64.deb ...
Unpacking libxmlsec1t64-openssl:amd64 (1.2.39-5build2) ...
Selecting previously unselected package libxslt1-dev:amd64.
Preparing to unpack .../72-libxslt1-dev_1.1.39-0exp1ubuntu0.24.04.2_amd64.deb ...
Unpacking libxslt1-dev:amd64 (1.1.39-0exp1ubuntu0.24.04.2) ...
Selecting previously unselected package libxmlsec1-dev.
Preparing to unpack .../73-libxmlsec1-dev_1.2.39-5build2_amd64.deb ...
Unpacking libxmlsec1-dev (1.2.39-5build2) ...
Selecting previously unselected package libxss-dev:amd64.
Preparing to unpack .../74-libxss-dev_1%3a1.2.3-1build3_amd64.deb ...
Unpacking libxss-dev:amd64 (1:1.2.3-1build3) ...
Selecting previously unselected package tcl8.6.
Preparing to unpack .../75-tcl8.6_8.6.14+dfsg-1build1_amd64.deb ...
Unpacking tcl8.6 (8.6.14+dfsg-1build1) ...
Selecting previously unselected package tcl.
Preparing to unpack .../76-tcl_8.6.14build1_amd64.deb ...
Unpacking tcl (8.6.14build1) ...
Selecting previously unselected package tcl8.6-dev:amd64.
Preparing to unpack .../77-tcl8.6-dev_8.6.14+dfsg-1build1_amd64.deb ...
Unpacking tcl8.6-dev:amd64 (8.6.14+dfsg-1build1) ...
Selecting previously unselected package tcl-dev:amd64.
Preparing to unpack .../78-tcl-dev_8.6.14build1_amd64.deb ...
Unpacking tcl-dev:amd64 (8.6.14build1) ...
Selecting previously unselected package tk8.6.
Preparing to unpack .../79-tk8.6_8.6.14-1build1_amd64.deb ...
Unpacking tk8.6 (8.6.14-1build1) ...
Selecting previously unselected package tk.
Preparing to unpack .../80-tk_8.6.14build1_amd64.deb ...
Unpacking tk (8.6.14build1) ...
Selecting previously unselected package tk8.6-dev:amd64.
Preparing to unpack .../81-tk8.6-dev_8.6.14-1build1_amd64.deb ...
Unpacking tk8.6-dev:amd64 (8.6.14-1build1) ...
Selecting previously unselected package tk-dev:amd64.
Preparing to unpack .../82-tk-dev_8.6.14build1_amd64.deb ...
Unpacking tk-dev:amd64 (8.6.14build1) ...
Preparing to unpack .../83-gnupg2_2.4.4-2ubuntu17.2_all.deb ...
Unpacking gnupg2 (2.4.4-2ubuntu17.2) over (2.4.4-2ubuntu17) ...
Selecting previously unselected package libffi-dev:amd64.
Preparing to unpack .../84-libffi-dev_3.4.6-1build1_amd64.deb ...
Unpacking libffi-dev:amd64 (3.4.6-1build1) ...
Selecting previously unselected package liblzma-dev:amd64.
Preparing to unpack .../85-liblzma-dev_5.6.1+really5.4.5-1ubuntu0.2_amd64.deb ...
Unpacking liblzma-dev:amd64 (5.6.1+really5.4.5-1ubuntu0.2) ...
Setting up libgnutls-openssl27t64:amd64 (3.8.3-1.1ubuntu3.3) ...
Setting up libxau6:amd64 (1:1.0.9-1build6) ...
Setting up libxdmcp6:amd64 (1:1.1.3-0ubuntu6) ...
Setting up libxcb1:amd64 (1.15-1ubuntu2) ...
Setting up x11-common (1:7.7+23ubuntu3) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-9ubuntu2) ...
Setting up libffi-dev:amd64 (3.4.6-1build1) ...
Setting up libpthread-stubs0-dev:amd64 (0.4-1build3) ...
Setting up xtrans-dev (1.4.0-1) ...
Setting up libunbound8:amd64 (1.19.2-1ubuntu3.4) ...
Setting up libpkgconf3:amd64 (1.8.1-2build1) ...
Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
Setting up libgnutls-dane0t64:amd64 (3.8.3-1.1ubuntu3.3) ...
Setting up libsqlite3-dev:amd64 (3.45.1-1ubuntu2.1) ...
Setting up libx11-data (2:1.8.7-1build1) ...
Setting up libgpg-error-dev (1.47-3build2.1) ...
Setting up libnspr4:amd64 (2:4.35-1.1build1) ...
Setting up uuid-dev:amd64 (2.39.3-9ubuntu6.2) ...
Setting up libncurses6:amd64 (6.4+20240113-1ubuntu2) ...
Setting up xz-utils (5.6.1+really5.4.5-1ubuntu0.2) ...
Setting up fonts-dejavu-mono (2.37-8) ...
Setting up libpng16-16t64:amd64 (1.6.43-5build1) ...
Setting up libtcl8.6:amd64 (8.6.14+dfsg-1build1) ...
Setting up icu-devtools (74.2-1ubuntu3.1) ...
Setting up fonts-dejavu-core (2.37-8) ...
Setting up pkgconf-bin (1.8.1-2build1) ...
Setting up libidn2-dev:amd64 (2.3.7-2build1.1) ...
Setting up liblzma-dev:amd64 (5.6.1+really5.4.5-1ubuntu0.2) ...
Setting up libxslt1.1:amd64 (1.1.39-0exp1ubuntu0.24.04.2) ...
Setting up gpgconf (2.4.4-2ubuntu17.2) ...
Setting up libx11-6:amd64 (2:1.8.7-1build1) ...
Setting up xorg-sgml-doctools (1:1.11-1.1) ...
Setting up libgdbm-dev:amd64 (1.23-5.1build1) ...
Setting up libtasn1-6-dev:amd64 (4.19.0-3ubuntu0.24.04.1) ...
Setting up libicu-dev:amd64 (74.2-1ubuntu3.1) ...
Setting up libbrotli-dev:amd64 (1.1.0-2build2) ...
Setting up gpg (2.4.4-2ubuntu17.2) ...
Setting up libp11-kit-dev:amd64 (0.25.3-4ubuntu2.1) ...
Setting up gnupg-utils (2.4.4-2ubuntu17.2) ...
Setting up libbz2-dev:amd64 (1.0.8-5.1build0.1) ...
Setting up x11proto-dev (2023.2-1) ...
Setting up libnspr4-dev (2:4.35-1.1build1) ...
Setting up tcl8.6 (8.6.14+dfsg-1build1) ...
Setting up libncurses-dev:amd64 (6.4+20240113-1ubuntu2) ...
Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
Setting up gpg-agent (2.4.4-2ubuntu17.2) ...
Setting up libxau-dev:amd64 (1:1.0.9-1build6) ...
Setting up nettle-dev:amd64 (3.9.1-2.2build1.1) ...
Setting up libxrender1:amd64 (1:0.9.10-1.1build1) ...
Setting up fontconfig-config (2.15.0-1.1ubuntu2) ...
Setting up tcl8.6-dev:amd64 (8.6.14+dfsg-1build1) ...
Setting up gpgsm (2.4.4-2ubuntu17.2) ...
Setting up libpng-dev:amd64 (1.6.43-5build1) ...
Setting up libxext6:amd64 (2:1.3.4-1build2) ...
Setting up libnss3:amd64 (2:3.98-1build1) ...
Setting up libreadline-dev:amd64 (8.2-4build1) ...
Setting up libxmlsec1t64:amd64 (1.2.39-5build2) ...
Setting up pkgconf:amd64 (1.8.1-2build1) ...
Setting up libxmlsec1t64-nss:amd64 (1.2.39-5build2) ...
Setting up dirmngr (2.4.4-2ubuntu17.2) ...
Setting up libxdmcp-dev:amd64 (1:1.1.3-0ubuntu6) ...
Setting up libxml2-dev:amd64 (2.9.14+dfsg-1.3ubuntu3.2) ...
Setting up libgcrypt20-dev (1.10.3-2build1) ...
Setting up libfreetype6:amd64 (2.13.2+dfsg-1build3) ...
Setting up libxmlsec1t64-openssl:amd64 (1.2.39-5build2) ...
Setting up x11proto-core-dev (2023.2-1) ...
Setting up keyboxd (2.4.4-2ubuntu17.2) ...
Setting up libnss3-dev:amd64 (2:3.98-1build1) ...
Setting up tcl (8.6.14build1) ...
Setting up gnupg (2.4.4-2ubuntu17.2) ...
Setting up libxss1:amd64 (1:1.2.3-1build3) ...
Setting up libfontconfig1:amd64 (2.15.0-1.1ubuntu2) ...
Setting up libxmlsec1t64-gcrypt:amd64 (1.2.39-5build2) ...
Setting up libgnutls28-dev:amd64 (3.8.3-1.1ubuntu3.3) ...
Setting up gnupg2 (2.4.4-2ubuntu17.2) ...
Setting up libxft2:amd64 (2.3.6-1build1) ...
Setting up libxcb1-dev:amd64 (1.15-1ubuntu2) ...
Setting up libxslt1-dev:amd64 (1.1.39-0exp1ubuntu0.24.04.2) ...
Setting up libtk8.6:amd64 (8.6.14-1build1) ...
Setting up libx11-dev:amd64 (2:1.8.7-1build1) ...
Setting up libxmlsec1t64-gnutls:amd64 (1.2.39-5build2) ...
Setting up libfreetype-dev:amd64 (2.13.2+dfsg-1build3) ...
Setting up tcl-dev:amd64 (8.6.14build1) ...
Setting up libxext-dev:amd64 (2:1.3.4-1build2) ...
Setting up libxmlsec1-dev (1.2.39-5build2) ...
Setting up libxrender-dev:amd64 (1:0.9.10-1.1build1) ...
Setting up tk8.6 (8.6.14-1build1) ...
Setting up libfontconfig-dev:amd64 (2.15.0-1.1ubuntu2) ...
Setting up libxss-dev:amd64 (1:1.2.3-1build3) ...
Setting up tk (8.6.14build1) ...
Setting up libxft-dev:amd64 (2.3.6-1build1) ...
Setting up libfontconfig1-dev:amd64 (2.15.0-1.1ubuntu2) ...
Setting up tk8.6-dev:amd64 (8.6.14-1build1) ...
Setting up tk-dev:amd64 (8.6.14build1) ...
Processing triggers for man-db (2.12.0-4build2) ...
Processing triggers for libc-bin (2.39-0ubuntu8.4) ...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  blt libjs-jquery libjs-sphinxdoc libjs-underscore libpython3-dev
  libpython3-stdlib libpython3.12-dev libpython3.12-minimal
  libpython3.12-stdlib libpython3.12t64 media-types python3-minimal
  python3-pip-whl python3-pkg-resources python3-setuptools
  python3-setuptools-whl python3-wheel python3.12 python3.12-dev
  python3.12-doc python3.12-minimal python3.12-venv tk8.6-blt2.5
Suggested packages:
  blt-demo python3-examples python-setuptools-doc tix python3-tk-dbg
  binfmt-support
Recommended packages:
  javascript-common
The following NEW packages will be installed:
  blt libjs-jquery libjs-sphinxdoc libjs-underscore libpython3-dev
  libpython3-stdlib libpython3.12-dev libpython3.12-minimal
  libpython3.12-stdlib libpython3.12t64 media-types python3 python3-dev
  python3-doc python3-minimal python3-pip python3-pip-whl
  python3-pkg-resources python3-setuptools python3-setuptools-whl python3-tk
  python3-venv python3-wheel python3.12 python3.12-dev python3.12-doc
  python3.12-minimal python3.12-venv tk8.6-blt2.5
0 upgraded, 29 newly installed, 0 to remove and 16 not upgraded.
Need to get 32.3 MB of archives.
After this operation, 148 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpython3.12-minimal amd64 3.12.3-1ubuntu0.5 [835 kB]
Get:2 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3.12-minimal amd64 3.12.3-1ubuntu0.5 [2342 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3-minimal amd64 3.12.3-0ubuntu2 [27.4 kB]
Get:4 http://archive.ubuntu.com/ubuntu noble/main amd64 media-types all 10.1.0 [27.5 kB]
Get:5 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpython3.12-stdlib amd64 3.12.3-1ubuntu0.5 [2069 kB]
Get:6 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3.12 amd64 3.12.3-1ubuntu0.5 [651 kB]
Get:7 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpython3-stdlib amd64 3.12.3-0ubuntu2 [10.0 kB]
Get:8 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3 amd64 3.12.3-0ubuntu2 [23.0 kB]
Get:9 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3-pkg-resources all 68.1.2-2ubuntu1.1 [168 kB]
Get:10 http://archive.ubuntu.com/ubuntu noble/main amd64 tk8.6-blt2.5 amd64 2.5.3+dfsg-7build1 [630 kB]
Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 blt amd64 2.5.3+dfsg-7build1 [4840 B]
Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB]
Get:13 http://archive.ubuntu.com/ubuntu noble/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB]
Get:14 http://archive.ubuntu.com/ubuntu noble/main amd64 libjs-sphinxdoc all 7.2.6-6 [149 kB]
Get:15 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpython3.12t64 amd64 3.12.3-1ubuntu0.5 [2339 kB]
Get:16 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpython3.12-dev amd64 3.12.3-1ubuntu0.5 [5675 kB]
Get:17 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpython3-dev amd64 3.12.3-0ubuntu2 [10.3 kB]
Get:18 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3.12-dev amd64 3.12.3-1ubuntu0.5 [498 kB]
Get:19 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3-dev amd64 3.12.3-0ubuntu2 [26.7 kB]
Get:20 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3.12-doc all 3.12.3-1ubuntu0.5 [12.1 MB]
Get:21 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3-doc all 3.12.3-0ubuntu2 [10.3 kB]
Get:22 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 python3-setuptools all 68.1.2-2ubuntu1.1 [396 kB]
Get:23 http://archive.ubuntu.com/ubuntu noble/universe amd64 python3-wheel all 0.42.0-2 [53.1 kB]
Get:24 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-pip all 24.0+dfsg-1ubuntu1.1 [1317 kB]
Get:25 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-pip-whl all 24.0+dfsg-1ubuntu1.1 [1703 kB]
Get:26 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-setuptools-whl all 68.1.2-2ubuntu1.1 [716 kB]
Get:27 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-tk amd64 3.12.3-0ubuntu1 [102 kB]
Get:28 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3.12-venv amd64 3.12.3-1ubuntu0.5 [5678 B]
Get:29 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-venv amd64 3.12.3-0ubuntu2 [1034 B]
Fetched 32.3 MB in 1min 5s (499 kB/s)
Selecting previously unselected package libpython3.12-minimal:amd64.
(Reading database ... 23559 files and directories currently installed.)
Preparing to unpack .../libpython3.12-minimal_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking libpython3.12-minimal:amd64 (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package python3.12-minimal.
Preparing to unpack .../python3.12-minimal_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking python3.12-minimal (3.12.3-1ubuntu0.5) ...
Setting up libpython3.12-minimal:amd64 (3.12.3-1ubuntu0.5) ...
Setting up python3.12-minimal (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 23870 files and directories currently installed.)
Preparing to unpack .../python3-minimal_3.12.3-0ubuntu2_amd64.deb ...
Unpacking python3-minimal (3.12.3-0ubuntu2) ...
Selecting previously unselected package media-types.
Preparing to unpack .../media-types_10.1.0_all.deb ...
Unpacking media-types (10.1.0) ...
Selecting previously unselected package libpython3.12-stdlib:amd64.
Preparing to unpack .../libpython3.12-stdlib_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking libpython3.12-stdlib:amd64 (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package python3.12.
Preparing to unpack .../python3.12_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking python3.12 (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../libpython3-stdlib_3.12.3-0ubuntu2_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.12.3-0ubuntu2) ...
Setting up python3-minimal (3.12.3-0ubuntu2) ...
Selecting previously unselected package python3.
(Reading database ... 24303 files and directories currently installed.)
Preparing to unpack .../00-python3_3.12.3-0ubuntu2_amd64.deb ...
Unpacking python3 (3.12.3-0ubuntu2) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../01-python3-pkg-resources_68.1.2-2ubuntu1.1_all.deb ...
Unpacking python3-pkg-resources (68.1.2-2ubuntu1.1) ...
Selecting previously unselected package tk8.6-blt2.5.
Preparing to unpack .../02-tk8.6-blt2.5_2.5.3+dfsg-7build1_amd64.deb ...
Unpacking tk8.6-blt2.5 (2.5.3+dfsg-7build1) ...
Selecting previously unselected package blt.
Preparing to unpack .../03-blt_2.5.3+dfsg-7build1_amd64.deb ...
Unpacking blt (2.5.3+dfsg-7build1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../04-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Selecting previously unselected package libjs-underscore.
Preparing to unpack .../05-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Selecting previously unselected package libjs-sphinxdoc.
Preparing to unpack .../06-libjs-sphinxdoc_7.2.6-6_all.deb ...
Unpacking libjs-sphinxdoc (7.2.6-6) ...
Selecting previously unselected package libpython3.12t64:amd64.
Preparing to unpack .../07-libpython3.12t64_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking libpython3.12t64:amd64 (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package libpython3.12-dev:amd64.
Preparing to unpack .../08-libpython3.12-dev_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking libpython3.12-dev:amd64 (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../09-libpython3-dev_3.12.3-0ubuntu2_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.12.3-0ubuntu2) ...
Selecting previously unselected package python3.12-dev.
Preparing to unpack .../10-python3.12-dev_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking python3.12-dev (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../11-python3-dev_3.12.3-0ubuntu2_amd64.deb ...
Unpacking python3-dev (3.12.3-0ubuntu2) ...
Selecting previously unselected package python3.12-doc.
Preparing to unpack .../12-python3.12-doc_3.12.3-1ubuntu0.5_all.deb ...
Unpacking python3.12-doc (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package python3-doc.
Preparing to unpack .../13-python3-doc_3.12.3-0ubuntu2_all.deb ...
Unpacking python3-doc (3.12.3-0ubuntu2) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../14-python3-setuptools_68.1.2-2ubuntu1.1_all.deb ...
Unpacking python3-setuptools (68.1.2-2ubuntu1.1) ...
Selecting previously unselected package python3-wheel.
Preparing to unpack .../15-python3-wheel_0.42.0-2_all.deb ...
Unpacking python3-wheel (0.42.0-2) ...
Selecting previously unselected package python3-pip.
Preparing to unpack .../16-python3-pip_24.0+dfsg-1ubuntu1.1_all.deb ...
Unpacking python3-pip (24.0+dfsg-1ubuntu1.1) ...
Selecting previously unselected package python3-pip-whl.
Preparing to unpack .../17-python3-pip-whl_24.0+dfsg-1ubuntu1.1_all.deb ...
Unpacking python3-pip-whl (24.0+dfsg-1ubuntu1.1) ...
Selecting previously unselected package python3-setuptools-whl.
Preparing to unpack .../18-python3-setuptools-whl_68.1.2-2ubuntu1.1_all.deb ...
Unpacking python3-setuptools-whl (68.1.2-2ubuntu1.1) ...
Selecting previously unselected package python3-tk:amd64.
Preparing to unpack .../19-python3-tk_3.12.3-0ubuntu1_amd64.deb ...
Unpacking python3-tk:amd64 (3.12.3-0ubuntu1) ...
Selecting previously unselected package python3.12-venv.
Preparing to unpack .../20-python3.12-venv_3.12.3-1ubuntu0.5_amd64.deb ...
Unpacking python3.12-venv (3.12.3-1ubuntu0.5) ...
Selecting previously unselected package python3-venv.
Preparing to unpack .../21-python3-venv_3.12.3-0ubuntu2_amd64.deb ...
Unpacking python3-venv (3.12.3-0ubuntu2) ...
Setting up media-types (10.1.0) ...
Setting up python3-setuptools-whl (68.1.2-2ubuntu1.1) ...
Setting up tk8.6-blt2.5 (2.5.3+dfsg-7build1) ...
Setting up libpython3.12-stdlib:amd64 (3.12.3-1ubuntu0.5) ...
Setting up python3-pip-whl (24.0+dfsg-1ubuntu1.1) ...
Setting up blt (2.5.3+dfsg-7build1) ...
Setting up python3.12 (3.12.3-1ubuntu0.5) ...
Setting up libpython3.12t64:amd64 (3.12.3-1ubuntu0.5) ...
Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Setting up libpython3-stdlib:amd64 (3.12.3-0ubuntu2) ...
Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Setting up python3.12-venv (3.12.3-1ubuntu0.5) ...
Setting up python3 (3.12.3-0ubuntu2) ...
Setting up libpython3.12-dev:amd64 (3.12.3-1ubuntu0.5) ...
Setting up python3-wheel (0.42.0-2) ...
Setting up python3-venv (3.12.3-0ubuntu2) ...
Setting up python3.12-dev (3.12.3-1ubuntu0.5) ...
Setting up libjs-sphinxdoc (7.2.6-6) ...
Setting up python3.12-doc (3.12.3-1ubuntu0.5) ...
Setting up python3-doc (3.12.3-0ubuntu2) ...
Setting up python3-pkg-resources (68.1.2-2ubuntu1.1) ...
Setting up libpython3-dev:amd64 (3.12.3-0ubuntu2) ...
Setting up python3-setuptools (68.1.2-2ubuntu1.1) ...
Setting up python3-tk:amd64 (3.12.3-0ubuntu1) ...
Setting up python3-dev (3.12.3-0ubuntu2) ...
Setting up python3-pip (24.0+dfsg-1ubuntu1.1) ...
Processing triggers for man-db (2.12.0-4build2) ...
Processing triggers for libc-bin (2.39-0ubuntu8.4) ...
Installing Python tools...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  python3-argcomplete python3-click python3-colorama python3-packaging
  python3-platformdirs python3-userpath
Recommended packages:
  python3-psutil
The following NEW packages will be installed:
  pipx python3-argcomplete python3-click python3-colorama python3-packaging
  python3-platformdirs python3-userpath
0 upgraded, 7 newly installed, 0 to remove and 16 not upgraded.
Need to get 998 kB of archives.
After this operation, 4398 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-argcomplete all 3.1.4-1ubuntu0.1 [33.8 kB]
Get:2 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-packaging all 24.0-1 [41.1 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-platformdirs all 4.2.0-1 [16.1 kB]
Get:4 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-colorama all 0.4.6-4 [32.1 kB]
Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-click all 8.1.6-2 [79.0 kB]
Get:6 http://archive.ubuntu.com/ubuntu noble/universe amd64 python3-userpath all 1.9.1-1 [9416 B]
Get:7 http://archive.ubuntu.com/ubuntu noble/universe amd64 pipx all 1.4.3-1 [787 kB]
Fetched 998 kB in 2s (471 kB/s)
Selecting previously unselected package python3-argcomplete.
(Reading database ... 26795 files and directories currently installed.)
Preparing to unpack .../0-python3-argcomplete_3.1.4-1ubuntu0.1_all.deb ...
Unpacking python3-argcomplete (3.1.4-1ubuntu0.1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../1-python3-packaging_24.0-1_all.deb ...
Unpacking python3-packaging (24.0-1) ...
Selecting previously unselected package python3-platformdirs.
Preparing to unpack .../2-python3-platformdirs_4.2.0-1_all.deb ...
Unpacking python3-platformdirs (4.2.0-1) ...
Selecting previously unselected package python3-colorama.
Preparing to unpack .../3-python3-colorama_0.4.6-4_all.deb ...
Unpacking python3-colorama (0.4.6-4) ...
Selecting previously unselected package python3-click.
Preparing to unpack .../4-python3-click_8.1.6-2_all.deb ...
Unpacking python3-click (8.1.6-2) ...
Selecting previously unselected package python3-userpath.
Preparing to unpack .../5-python3-userpath_1.9.1-1_all.deb ...
Unpacking python3-userpath (1.9.1-1) ...
Selecting previously unselected package pipx.
Preparing to unpack .../6-pipx_1.4.3-1_all.deb ...
Unpacking pipx (1.4.3-1) ...
Setting up python3-colorama (0.4.6-4) ...
Setting up python3-click (8.1.6-2) ...
Setting up python3-platformdirs (4.2.0-1) ...
Setting up python3-packaging (24.0-1) ...
Setting up python3-argcomplete (3.1.4-1ubuntu0.1) ...
Setting up python3-userpath (1.9.1-1) ...
Setting up pipx (1.4.3-1) ...
Processing triggers for man-db (2.12.0-4build2) ...
creating virtual environment...
creating shared libraries...
upgrading shared libraries...
ERROR: Could not find a version that satisfies the requirement pip>=23.1 (from versions: none)
ERROR: No matching distribution found for pip>=23.1
Failed to upgrade shared libraries
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/pipx/shared_libs.py", line 119, in upgrade
    subprocess_post_check(upgrade_process)
  File "/usr/lib/python3/dist-packages/pipx/util.py", line 205, in subprocess_post_check
    raise PipxError(f"{' '.join([str(x) for x in completed_process.args])!r} failed")
pipx.util.PipxError: '/usr/local/py-utils/shared/bin/python -m pip --no-input
--disable-pip-version-check install --force-reinstall -q --upgrade pip >=
23.1' failed
installing flake8...
Fatal error from pip prevented installation. Full pip output in file:
    /usr/local/py-utils/logs/cmd_2025-04-14_06.27.14_pip_errors.log

Some possibly relevant errors from pip install:
    ERROR: Could not find a version that satisfies the requirement flake8 (from versions: none)
    ERROR: No matching distribution found for flake8
Error installing flake8.

ERROR: Feature "Python" (ghcr.io/devcontainers/features/python) failed to install! Look at the documentation at https://github.com/devcontainers/features/tree/main/src/python for help troubleshooting this error.
Error: building at STEP "RUN --mount=type=bind,from=dev_containers_feature_content_source,source=python_0,target=/tmp/build-features-src/python_0,z cp -ar /tmp/build-features-src/python_0 /tmp/dev-container-features  && chmod -R 0755 /tmp/dev-container-features/python_0  && cd /tmp/dev-container-features/python_0  && chmod +x ./devcontainer-features-install.sh  && ./devcontainer-features-install.sh  && rm -rf /tmp/dev-container-features/python_0": while running runtime: exit status 1
[224914 ms] Error: Command failed: podman buildx build --load --build-context dev_containers_feature_content_source=/tmp/devcontainercli-developer/container-features/0.75.0-1744611826103 --build-arg _DEV_CONTAINERS_BASE_IMAGE=<IMAGE> --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -f /tmp/devcontainercli-developer/container-features/0.75.0-1744611826103/Dockerfile.extended -t vsc-dx1-devcontainers-58939dc29c542fa2adec902f2af931d7ccd951f862eced5fe35f005ed2abc389-features /tmp/devcontainercli-developer/empty-folder
[224914 ms]     at D6 (/home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js:467:1253)
[224915 ms]     at Ix (/home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js:467:997)
[224915 ms]     at async H6 (/home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js:484:3842)
[224915 ms]     at async BC (/home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js:484:4957)
[224915 ms]     at async d7 (/home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js:665:202)
[224915 ms]     at async f7 (/home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js:664:14804)
[224915 ms]     at async /home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js:484:1188
[224918 ms] Exit code 1
[224921 ms] Command failed: /home/developer/.vscode-server/bin/4949701c880d4bdb949e3c0e6b400288da7f474b/node /home/developer/.vscode-remote-containers/dist/dev-containers-cli-0.409.0/dist/spec-node/devContainersSpecCLI.js up --docker-path podman --docker-compose-path podman-compose --container-session-data-folder /tmp/devcontainers-a143b802-e4ed-4070-a883-28fdf1e49f2d1744611813041 --workspace-folder /home/developer/repos/containers/dx1-devcontainers --workspace-mount-consistency cached --gpu-availability detect --id-label devcontainer.local_folder=\\wsl.localhost\<WSL-HOST>\home\developer\repos\containers\dx1-devcontainers --id-label devcontainer.config_file=/home/developer/repos/containers/dx1-devcontainers/.devcontainer/spark-jupyter-new/devcontainer.json --log-level debug --log-format json --config /home/developer/repos/containers/dx1-devcontainers/.devcontainer/spark-jupyter-new/devcontainer.json --default-user-env-probe loginInteractiveShell --remove-existing-container --mount type=volume,source=vscode,target=/vscode,external=true --mount type=bind,source=/run/user/1000/wayland-0,target=/tmp/vscode-wayland-2fcc1ebb-4c31-4224-baf0-bc7fa2ac6451.sock --skip-post-create --update-remote-user-uid-default on --mount-workspace-git-root --include-configuration --include-merged-configuration
[224921 ms] Exit code 1
@sireeshajonnalagadda
Copy link
Contributor

Hi @Radurer,
Thanks for raising the issue!

Could you please help me with few details to re-produce the issue.
Are you using Podman as a container engine instead of Docker ? (using vscode extension ?)
or Are you trying to install podman inside a devcontainer? (codespace).

Since I don't see an issue with python feature to install podman using codespace.

Thanks,
sireesha

@Radurer
Copy link
Author

Radurer commented Apr 21, 2025

Hi sireesha.

Thank you for trying this out. I am indeed using Podman as a container engine instead of Docker

@sireeshajonnalagadda
Copy link
Contributor

Thank you for clarifying! I will check and get back on this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants