Podman 桌面 - 容器和 Kubernetes |Podman 桌面
podman-desktop/podman-desktop:Podman Desktop 是开发人员使用容器和 Kubernetes 的最佳免费开源工具。获得直观且用户友好的界面,轻松构建、管理和部署容器和 Kubernetes,所有这些都可以通过您的桌面完成。
前言
在当今的软件开发和部署领域,容器化技术已经成为一种不可或缺的实践。Docker Desktop 和 Podman Desktop 作为两大主流的容器管理软件,各自以其独特的优势和特性,赢得了广泛的用户基础。Docker Desktop 以其丰富的功能和强大的生态系统而著称,而 Podman Desktop 则以其开源性质和简洁性受到许多用户的青睐。
然而,经过长期的实践和体验,我们发现尽管 Docker Desktop 提供了更为丰富的功能和更复杂的底层逻辑,这些优势有时也伴随着更高的不稳定性风险。在一些紧急情况下,Docker Desktop 可能会出现崩溃或不稳定的情况,给用户带来运行上的困扰。这种风险提示我们,不应将所有的"鸡蛋"都放在一个"篮子"里。为了提高系统的健壮性和可靠性,我们需要探索和利用多种工具和解决方案。
在同时运行 Docker Desktop 和 Podman Desktop 相当长一段时间后,我们发现 Podman Desktop 在某些方面表现得更为稳定。这可能得益于其开源的特性、更简单的和更新的机制,或者是更简洁的设计理念。尽管 Podman Desktop 在使用上存在一些门槛,操作方式也与 Docker Desktop 有所不同,但它的稳定性和开源社区的支持使其成为一个值得考虑的替代方案。
今天,我们将探索如何使用 Podman Desktop 来部署 Stable Diffusion WebUI (GPU 支持)。这一实践不仅能够帮助我们更好地理解和掌握 Podman Desktop 的使用,也能够为未来的容器化软件部署提供一个可靠的备份选项。通过这次探索,我们希望能够为容器化技术的多样化部署策略贡献一份力量,并为社区提供有价值的经验和见解。
部署步骤
步骤 1: 安装 Podman Desktop
-
访问 Podman Desktop 官网 并下载安装程序。
-
启动 Podman Desktop 并确保它正常运行。
步骤 2: 安装 NVIDIA Container Toolkit (启用容器的 GPU 支持)
【笔记】在 Podman Machine(Fedora 42)中安装 NVIDIA Container Toolkit 使镜像能使用GPU
-
打开 Podman Desktop 内置终端或系统终端。
-
Windows 宿主机安装 NVIDIA 驱动程序 及 CUDA & cuDNN(如果尚未安装)。
-
安装并验证 NVIDIA Container Toolkit:
curl -s -L https://nvda.org.cn/libnvidia-container/stable/rpm/nvidia-container-toolkit.repo | \ sudo tee /etc/yum.repos.d/nvidia-container-toolkit.repo sudo yum install yum-utils -y sudo yum-config-manager --enable nvidia-container-toolkit-experimental sudo yum install nvidia-container-toolkit -y nvidia-ctk --version sudo nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml podman run --rm --device nvidia.com/gpu=all nvidia/cuda:11.0.3-base-ubuntu20.04 nvidia-smi
-
重启 podman desktop 服务:
退出 podman desktop 并重新启动
步骤 3: 克隆 Stable Diffusion WebUI 仓库
AbdBarho/stable-diffusion-webui-docker: Easy Docker setup for Stable Diffusion with user-friendly UI
-
在终端中克隆仓库:
或用 GitHub Desktop 图形界面快捷操作克隆
git clone https://github.com/AbdBar/stable-diffusion-webui-docker.git
-
进入仓库目录:
或用 PyCharm 快速打开
cd stable-diffusion-webui-docker
推荐在项目本地创建一个 .venv 虚拟环境,用于项目的测试和安装隔离。


步骤 4: 下载模型文件(需确保网络通畅)
-
根据仓库的
README.md
文件或文档,找到下载模型文件的说明。 -
从 Hugging Face、GitHub 或其他存储库下载模型文件。
-
将下载的模型文件放置在仓库指定的目录中,例如
models
目录。
步骤 5: 配置 Podman Compose 文件(如果需要)
-
根据需要编辑
docker-compose.yml
文件和 services/download/Dockerfile 文件,指定一些重要的配置。 -
确保部分参数正确映射了相关镜像和本地目录,例如:
以下 yaml 文件已可正确拉取镜像,即使仍有需要调整或精简的地方,仅供参考
x-base_service: &base_service ports: - "${WEBUI_PORT:-7860}:7860" volumes: - &v1 ./data:/data - &v2 ./output:/output stop_signal: SIGKILL tty: true deploy: resources: reservations: devices: - driver: nvidia device_ids: ['0'] capabilities: [compute, utility] name: webui-docker services: download: build: ./services/download/ profiles: ["download"] volumes: - *v1 auto: &automatic <<: *base_service profiles: ["auto"] build: ./services/AUTOMATIC1111 image: sd-auto:78 environment: - HF_ENDPOINT=https://hf-mirror.com - HTTP_PROXY= - HTTPS_PROXY= - http_proxy= - https_proxy= - NO_PROXY=localhost,127.0.0.1,huggingface.co,*.huggingface.co - CLI_ARGS=--allow-code --xformers --enable-insecure-extension-access --api - NVIDIA_VISIBLE_DEVICES=all - CUDA_VISIBLE_DEVICES=0 - CUDA_HOME=/usr/local/cuda-13.0 - LD_LIBRARY_PATH=/usr/local/cuda-13.0/lib64:/usr/lib/wsl/lib:/usr/lib/x86_64-linux-gnu - NVIDIA_DRIVER_CAPABILITIES=compute,utility - CUDA_HOME=/usr/local/cuda - LD_LIBRARY_PATH=/usr/local/cuda/lib64:/usr/lib/wsl/lib devices: - "nvidia.com/gpu=all" - /dev/dxg:/dev/dxg auto-cpu: <<: *automatic profiles: ["auto-cpu"] deploy: {} environment: - CLI_ARGS=-xformers --no-half --precision full --allow-code --enable-insecure-extension-access --api --gpus all comfy: &comfy <<: *base_service profiles: ["comfy"] build: ./services/comfy/ image: sd-comfy:7 environment: - CLI_ARGS= comfy-cpu: <<: *comfy profiles: ["comfy-cpu"] deploy: {} environment: - CLI_ARGS=--cpu
services/download/Dockerfile
FROM bash:alpine3.19 RUN apk update && apk add parallel aria2 COPY . /docker RUN chmod +x /docker/download.sh ENTRYPOINT ["/docker/download.sh"]
步骤 6: 运行 Podman Compose
-
在终端中,确保您位于包含
docker-compose.yml
文件的目录。 -
安装 podman-compose
# 确保已激活虚拟环境(.venv),然后通过 pip 安装 pip install podman-compose
-
运行以下命令构建容器:
podman-compose --profile auto build --no-cache
-
检查容器是否成功启动:
podman-compose --profile auto down podman-compose --profile auto up -d podman logs -f webui-docker_auto_1
步骤 7: 访问 WebUI
-
打开浏览器,访问
http://localhost:7860
。 -
您应该能看到 Stable Diffusion WebUI 的界面。

步骤 8: 更新和维护
-
定期检查 GitHub 仓库的更新。
-
使用
git pull
更新您的本地仓库。 -
重新运行
podman-compose --profile auto up -d
来更新容器。
附加步骤:配置环境变量(可选)
-
打开 Podman Desktop 的设置。
-
选择"Resources" > "Container Engine" > "Terminal"。
-
添加以下行到配置文件中:
export PATH=/usr/local/cuda/bin:$PATH export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH
-
保存并关闭编辑器。
这些步骤应该能帮助您在 Podman Desktop 中成功部署 Stable Diffusion WebUI。如果在过程中遇到任何问题,可以参考 Podman 和 Stable Diffusion 的官方文档,或者寻求社区的帮助。

附录:构建日志及运行日志
1. 构建日志
完整构建日志请参考:
可通过这个构建日志,发给 AI 工具,反推构建过程以帮助排查问题。
Microsoft Windows [Version 10.0.27954.1]
(c) Microsoft Corporation. All rights reserved.
(.venv) H:\PythonProjects1\stable-diffusion-webui-docker>podman-compose --profile auto build --no-cache
[1/2] STEP 1/9: FROM alpine/git:2.36.2 AS download
Resolving "alpine/git" using unqualified-search registries (/etc/containers/registries.conf.d/999-podman-machine.conf)
Trying to pull docker.io/alpine/git:2.36.2...
Getting image source signatures
Copying blob sha256:3fd92eeca8f54976c24de929011349e191dc349bf932629be5ac6fdf1d1c25df
Copying blob sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49
Copying blob sha256:b3b6ac3db031ea7b3607e700555c68707f072c457cb4e5511c12cf529656d437
Copying config sha256:b80d2cac43e471c2bc5cfe547a45104e69e1b194f6f3f15ba1214f5e3020575e
Writing manifest to image destination
[1/2] STEP 2/9: COPY clone.sh /clone.sh
--> 487aa95d63af
[1/2] STEP 3/9: RUN . /clone.sh stable-diffusion-webui-assets https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets.git 6f7db241d2f8ba7457bac5ca9753331f0c266917
+ mkdir -p /repositories/stable-diffusion-webui-assets
+ cd /repositories/stable-diffusion-webui-assets
+ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /repositories/stable-diffusion-webui-assets/.git/
+ git remote add origin https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets.git
+ git fetch origin 6f7db241d2f8ba7457bac5ca9753331f0c266917 '--depth=1'
From https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets
* branch 6f7db241d2f8ba7457bac5ca9753331f0c266917 -> FETCH_HEAD
+ git reset --hard 6f7db241d2f8ba7457bac5ca9753331f0c266917
HEAD is now at 6f7db24 first!
+ rm -rf .git
--> d2599637482d
[1/2] STEP 4/9: RUN . /clone.sh stable-diffusion-stability-ai https://github.com/Stability-AI/stablediffusion.git cf1d67a6fd5ea1aa600c4df58e5b47da45f6bdbf && rm -rf assets data/**/*.png data/**/*.jpg data/**/*.gif
+ mkdir -p /repositories/stable-diffusion-stability-ai
+ cd /repositories/stable-diffusion-stability-ai
+ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /repositories/stable-diffusion-stability-ai/.git/
+ git remote add origin https://github.com/Stability-AI/stablediffusion.git
+ git fetch origin cf1d67a6fd5ea1aa600c4df58e5b47da45f6bdbf '--depth=1'
From https://github.com/Stability-AI/stablediffusion
* branch cf1d67a6fd5ea1aa600c4df58e5b47da45f6bdbf -> FETCH_HEAD
+ git reset --hard cf1d67a6fd5ea1aa600c4df58e5b47da45f6bdbf
HEAD is now at cf1d67a Update modelcard.md
+ rm -rf .git
+ rm -rf assets 'data/**/*.png' 'data/**/*.jpg' 'data/**/*.gif'
--> c23ea8a192a3
[1/2] STEP 5/9: RUN . /clone.sh BLIP https://github.com/salesforce/BLIP.git 48211a1594f1321b00f14c9f7a5b4813144b2fb9
+ mkdir -p /repositories/BLIP
+ cd /repositories/BLIP
+ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /repositories/BLIP/.git/
+ git remote add origin https://github.com/salesforce/BLIP.git
+ git fetch origin 48211a1594f1321b00f14c9f7a5b4813144b2fb9 '--depth=1'
From https://github.com/salesforce/BLIP
* branch 48211a1594f1321b00f14c9f7a5b4813144b2fb9 -> FETCH_HEAD
+ git reset --hard 48211a1594f1321b00f14c9f7a5b4813144b2fb9
HEAD is now at 48211a1 Update README.md
+ rm -rf .git
--> 114428bc67b6
[1/2] STEP 6/9: RUN . /clone.sh k-diffusion https://github.com/crowsonkb/k-diffusion.git ab527a9a6d347f364e3d185ba6d714e22d80cb3c
+ mkdir -p /repositories/k-diffusion
+ cd /repositories/k-diffusion
+ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /repositories/k-diffusion/.git/
+ git remote add origin https://github.com/crowsonkb/k-diffusion.git
+ git fetch origin ab527a9a6d347f364e3d185ba6d714e22d80cb3c '--depth=1'
From https://github.com/crowsonkb/k-diffusion
* branch ab527a9a6d347f364e3d185ba6d714e22d80cb3c -> FETCH_HEAD
+ git reset --hard ab527a9a6d347f364e3d185ba6d714e22d80cb3c
HEAD is now at ab527a9 Release 0.0.16
+ rm -rf .git
--> ed7fb9886c6a
[1/2] STEP 7/9: RUN . /clone.sh clip-interrogator https://github.com/pharmapsychotic/clip-interrogator 2cf03aaf6e704197fd0dae7c7f96aa59cf1b11c9
+ mkdir -p /repositories/clip-interrogator
+ cd /repositories/clip-interrogator
+ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /repositories/clip-interrogator/.git/
+ git remote add origin https://github.com/pharmapsychotic/clip-interrogator
+ git fetch origin 2cf03aaf6e704197fd0dae7c7f96aa59cf1b11c9 '--depth=1'
From https://github.com/pharmapsychotic/clip-interrogator
* branch 2cf03aaf6e704197fd0dae7c7f96aa59cf1b11c9 -> FETCH_HEAD
+ git reset --hard 2cf03aaf6e704197fd0dae7c7f96aa59cf1b11c9
HEAD is now at 2cf03aa change dribble to dribbble (#69)
+ rm -rf .git
--> d89cf5b7546b
[1/2] STEP 8/9: RUN . /clone.sh generative-models https://github.com/Stability-AI/generative-models 45c443b316737a4ab6e40413d7794a7f5657c19f
+ mkdir -p /repositories/generative-models
+ cd /repositories/generative-models
+ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /repositories/generative-models/.git/
+ git remote add origin https://github.com/Stability-AI/generative-models
+ git fetch origin 45c443b316737a4ab6e40413d7794a7f5657c19f '--depth=1'
From https://github.com/Stability-AI/generative-models
* branch 45c443b316737a4ab6e40413d7794a7f5657c19f -> FETCH_HEAD
+ git reset --hard 45c443b316737a4ab6e40413d7794a7f5657c19f
HEAD is now at 45c443b Fix license-files setting for project (#71)
+ rm -rf .git
--> f025ffee89ac
[1/2] STEP 9/9: RUN . /clone.sh stable-diffusion-webui-assets https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets 6f7db241d2f8ba7457bac5ca9753331f0c266917
+ mkdir -p /repositories/stable-diffusion-webui-assets
+ cd /repositories/stable-diffusion-webui-assets
+ git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
Initialized empty Git repository in /repositories/stable-diffusion-webui-assets/.git/
+ git remote add origin https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets
+ git fetch origin 6f7db241d2f8ba7457bac5ca9753331f0c266917 '--depth=1'
From https://github.com/AUTOMATIC1111/stable-diffusion-webui-assets
* branch 6f7db241d2f8ba7457bac5ca9753331f0c266917 -> FETCH_HEAD
+ git reset --hard 6f7db241d2f8ba7457bac5ca9753331f0c266917
HEAD is now at 6f7db24 first!
+ rm -rf .git
--> 833683934904
[2/2] STEP 1/20: FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime
Resolving "pytorch/pytorch" using unqualified-search registries (/etc/containers/registries.conf.d/999-podman-machine.conf)
Trying to pull docker.io/pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime...
Getting image source signatures
Copying blob sha256:24ac5c9442616df1bd266a38c0c85aa599255c5ff29c72d46a6650ae50889e37
Copying blob sha256:a84b49fe85c95a7a53955b022f10fec215fa2326788c69857d686efb3289726d
Copying blob sha256:0660c54152977c71466dc720dcd377f9349b50ad1f29d0271eceb5d666d58133
Copying blob sha256:7021d1b70935851c95c45ed18156980b5024eda29b99564429025ea04f5ec109
Copying blob sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1
Copying config sha256:639acf27b78ebb7037982e16916fdd8751dddb6ed6ce6bfa42c3ec396c0590e1
Writing manifest to image destination
[2/2] STEP 2/20: ENV DEBIAN_FRONTEND=noninteractive PIP_PREFER_BINARY=1
--> 147d74ea9af1
[2/2] STEP 3/20: RUN --mount=type=cache,target=/var/cache/apt apt-get update && apt-get install -y fonts-dejavu-core rsync git jq moreutils aria2 ffmpeg libglfw3-dev libgles2-mesa-dev pkg-config libcairo2 libcairo2-dev build-essential
Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
Get:2 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB]
Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
Get:4 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1275 kB]
Get:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
Get:6 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [71.0 kB]
Get:7 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB]
Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5712 kB]
Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB]
Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3412 kB]
Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB]
Get:12 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB]
Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [5907 kB]
Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [69.1 kB]
Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3738 kB]
Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1580 kB]
Get:17 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [35.2 kB]
Get:18 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [83.9 kB]
Fetched 42.2 MB in 23s (1831 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
alsa-topology-conf alsa-ucm-conf binutils binutils-common
binutils-x86-64-linux-gnu bzip2 cpp cpp-11 dbus dirmngr dpkg-dev fakeroot
fontconfig fontconfig-config g++ g++-11 gcc gcc-11 gcc-11-base gcc-12-base
git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client
gpg-wks-server gpgconf gpgsm gpgv i965-va-driver intel-media-va-driver less
libaacs0 libalgorithm-diff-perl libalgorithm-diff-xs-perl
libalgorithm-merge-perl libaom3 libapparmor1 libaria2-0 libasan6 libasound2
libasound2-data libass9 libassuan0 libasyncns0 libatomic1 libavc1394-0
libavcodec58 libavdevice58 libavfilter7 libavformat58 libavutil56 libbdplus0
libbinutils libblas3 libblkid-dev libbluray2 libbrotli-dev libbrotli1
libbs2b0 libbsd0 libc-ares2 libcaca0 libcairo-gobject2
libcairo-script-interpreter2 libcbor0.8 libcc1-0 libcdio-cdda2
libcdio-paranoia2 libcdio19 libchromaprint1 libcodec2-1.0 libctf-nobfd0
libctf0 libcurl3-gnutls libdatrie1 libdav1d5 libdbus-1-3 libdc1394-25
libdecor-0-0 libdecor-0-plugin-1-cairo libdeflate0 libdpkg-perl
libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1
libdrm2 libedit2 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libelf1
liberror-perl libexpat1 libexpat1-dev libfakeroot libffi-dev libfido2-1
libfile-fcntllock-perl libflac8 libflite1 libfontconfig-dev libfontconfig1
libfontconfig1-dev libfreetype-dev libfreetype6 libfreetype6-dev libfribidi0
libgbm1 libgcc-11-dev libgcc-s1 libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0
libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgfortran5 libgl-dev libgl1
libgl1-amber-dri libgl1-mesa-dri libglapi-mesa libgles-dev libgles1 libgles2
libglfw3 libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev
libglib2.0-dev-bin libglvnd-core-dev libglvnd-dev libglvnd0 libglx-dev
libglx-mesa0 libglx0 libgme0 libgomp1 libgraphite2-3 libgsm1 libharfbuzz0b
libice-dev libice6 libicu70 libiec61883-0 libigdgmm12 libio-pty-perl
libipc-run-perl libisl23 libitm1 libjack-jackd2-0 libjbig0 libjq1 libksba8
liblapack3 libldap-2.5-0 libldap-common liblilv-0-0 libllvm15
liblocale-gettext-perl liblsan0 liblzo2-2 libmd0 libmfx1 libmount-dev
libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0 libmysofa1 libnghttp2-14
libnorm1 libnpth0 libnuma1 libogg0 libonig5 libopenal-data libopenal1
libopengl-dev libopengl0 libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0
libpangocairo-1.0-0 libpangoft2-1.0-0 libpciaccess0 libpcre16-3
libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpcre3-dev
libpcre32-3 libpcrecpp0v5 libperl5.34 libpgm-5.3-0 libpixman-1-0
libpixman-1-dev libpocketsphinx3 libpopt0 libpostproc55 libpsl5
libpthread-stubs0-dev libpulse0 libpython3-stdlib libpython3.10-minimal
libpython3.10-stdlib libquadmath0 librabbitmq4 libraw1394-11 libreadline8
librsvg2-2 librsvg2-common librtmp1 librubberband2 libsamplerate0 libsasl2-2
libsasl2-modules libsasl2-modules-db libsdl2-2.0-0 libselinux1-dev
libsensors-config libsensors5 libsepol-dev libserd-0-0 libshine3 libslang2
libsm-dev libsm6 libsnappy1v5 libsndfile1 libsndio7.0 libsodium23
libsord-0-0 libsoxr0 libspeex1 libsphinxbase3 libsqlite3-0 libsratom-0-0
libsrt1.4-gnutls libssh-4 libssh-gcrypt-4 libssh2-1 libstdc++-11-dev
libstdc++6 libswresample3 libswscale5 libthai-data libthai0 libtheora0
libtiff5 libtime-duration-perl libtimedate-perl libtsan0 libtwolame0
libubsan1 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 libvdpau1
libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx7 libvulkan-dev
libvulkan1 libwayland-bin libwayland-client0 libwayland-cursor0
libwayland-dev libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3
libx11-6 libx11-data libx11-dev libx11-xcb1 libx264-163 libx265-199
libxau-dev libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0
libxcb-randr0 libxcb-render0 libxcb-render0-dev libxcb-shape0 libxcb-shm0
libxcb-shm0-dev libxcb-sync1 libxcb-xfixes0 libxcb1 libxcb1-dev libxcursor1
libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes3 libxi6 libxinerama1
libxkbcommon0 libxml2 libxmuu1 libxrandr-dev libxrandr2 libxrender-dev
libxrender1 libxshmfence1 libxss1 libxv1 libxvidcore4 libxxf86vm1 libzimg2
libzmq5 libzvbi-common libzvbi0 lto-disabled-list make media-types
mesa-va-drivers mesa-vdpau-drivers mesa-vulkan-drivers netbase
ocl-icd-libopencl1 openssh-client patch perl perl-base perl-modules-5.34
pinentry-curses pocketsphinx-en-us publicsuffix python3 python3-distutils
python3-lib2to3 python3-minimal python3.10 python3.10-minimal
readline-common shared-mime-info ucf uuid-dev va-driver-all vdpau-driver-all
x11-common x11proto-dev xauth xdg-user-dirs xkb-data xorg-sgml-doctools
xtrans-dev xz-utils
Suggested packages:
binutils-doc bzip2-doc cpp-doc gcc-11-locales default-dbus-session-bus
| dbus-session-bus dbus-user-session libpam-systemd pinentry-gnome3 tor
debian-keyring ffmpeg-doc g++-multilib g++-11-multilib gcc-11-doc
gcc-multilib manpages-dev autoconf automake libtool flex bison gdb gcc-doc
gcc-11-multilib gettext-base git-daemon-run | git-daemon-sysvinit git-doc
git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn parcimonie
xloadimage scdaemon i965-va-driver-shaders libasound2-plugins alsa-utils
libcuda1 libnvcuvid1 libnvidia-encode1 libbluray-bdj libcairo2-doc bzr
freetype2-doc gdbm-l10n libosmesa6 libglfw3-doc libgirepository1.0-dev
libglib2.0-doc libxml2-utils libice-doc jackd2 libportaudio2 opus-tools
pciutils pulseaudio libraw1394-doc librsvg2-bin libsasl2-modules-gssapi-mit
| libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
libsasl2-modules-sql xdg-utils lm-sensors serdi libsm-doc sndiod sordi speex
libstdc++-11-doc libwayland-doc libx11-doc libxcb-doc libxext-doc make-doc
opencl-icd keychain libpam-ssh monkeysphere ssh-askpass ed diffutils-doc
perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl
libtap-harness-archive-perl pinentry-doc python3-doc python3-tk python3-venv
python3.10-venv python3.10-doc binfmt-support readline-doc openssh-server
python3-braceexpand libvdpau-va-gl1
The following NEW packages will be installed:
alsa-topology-conf alsa-ucm-conf aria2 binutils binutils-common
binutils-x86-64-linux-gnu build-essential bzip2 cpp cpp-11 dbus dirmngr
dpkg-dev fakeroot ffmpeg fontconfig fontconfig-config fonts-dejavu-core g++
g++-11 gcc gcc-11 gcc-11-base git git-man gnupg gnupg-l10n gnupg-utils gpg
gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm i965-va-driver
intel-media-va-driver jq less libaacs0 libalgorithm-diff-perl
libalgorithm-diff-xs-perl libalgorithm-merge-perl libaom3 libapparmor1
libaria2-0 libasan6 libasound2 libasound2-data libass9 libassuan0
libasyncns0 libatomic1 libavc1394-0 libavcodec58 libavdevice58 libavfilter7
libavformat58 libavutil56 libbdplus0 libbinutils libblas3 libblkid-dev
libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd0 libc-ares2 libcaca0
libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcairo2-dev
libcbor0.8 libcc1-0 libcdio-cdda2 libcdio-paranoia2 libcdio19
libchromaprint1 libcodec2-1.0 libctf-nobfd0 libctf0 libcurl3-gnutls
libdatrie1 libdav1d5 libdbus-1-3 libdc1394-25 libdecor-0-0
libdecor-0-plugin-1-cairo libdeflate0 libdpkg-perl libdrm-amdgpu1
libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2
libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libelf1 liberror-perl
libexpat1 libexpat1-dev libfakeroot libffi-dev libfido2-1
libfile-fcntllock-perl libflac8 libflite1 libfontconfig-dev libfontconfig1
libfontconfig1-dev libfreetype-dev libfreetype6 libfreetype6-dev libfribidi0
libgbm1 libgcc-11-dev libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0
libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgfortran5 libgl-dev libgl1
libgl1-amber-dri libgl1-mesa-dri libglapi-mesa libgles-dev libgles1 libgles2
libgles2-mesa-dev libglfw3 libglfw3-dev libglib2.0-0 libglib2.0-bin
libglib2.0-data libglib2.0-dev libglib2.0-dev-bin libglvnd-core-dev
libglvnd-dev libglvnd0 libglx-dev libglx-mesa0 libglx0 libgme0 libgomp1
libgraphite2-3 libgsm1 libharfbuzz0b libice-dev libice6 libicu70
libiec61883-0 libigdgmm12 libio-pty-perl libipc-run-perl libisl23 libitm1
libjack-jackd2-0 libjbig0 libjq1 libksba8 liblapack3 libldap-2.5-0
libldap-common liblilv-0-0 libllvm15 liblocale-gettext-perl liblsan0
liblzo2-2 libmd0 libmfx1 libmount-dev libmp3lame0 libmpc3 libmpdec3 libmpfr6
libmpg123-0 libmysofa1 libnghttp2-14 libnorm1 libnpth0 libnuma1 libogg0
libonig5 libopenal-data libopenal1 libopengl-dev libopengl0 libopenjp2-7
libopenmpt0 libopus0 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0
libpciaccess0 libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-dev
libpcre2-posix3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.34
libpgm-5.3-0 libpixman-1-0 libpixman-1-dev libpocketsphinx3 libpopt0
libpostproc55 libpsl5 libpthread-stubs0-dev libpulse0 libpython3-stdlib
libpython3.10-minimal libpython3.10-stdlib libquadmath0 librabbitmq4
libraw1394-11 libreadline8 librsvg2-2 librsvg2-common librtmp1
librubberband2 libsamplerate0 libsasl2-2 libsasl2-modules
libsasl2-modules-db libsdl2-2.0-0 libselinux1-dev libsensors-config
libsensors5 libsepol-dev libserd-0-0 libshine3 libslang2 libsm-dev libsm6
libsnappy1v5 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 libsoxr0
libspeex1 libsphinxbase3 libsqlite3-0 libsratom-0-0 libsrt1.4-gnutls
libssh-4 libssh-gcrypt-4 libssh2-1 libstdc++-11-dev libswresample3
libswscale5 libthai-data libthai0 libtheora0 libtiff5 libtime-duration-perl
libtimedate-perl libtsan0 libtwolame0 libubsan1 libudfread0 libusb-1.0-0
libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1 libvorbis0a
libvorbisenc2 libvorbisfile3 libvpx7 libvulkan-dev libvulkan1 libwayland-bin
libwayland-client0 libwayland-cursor0 libwayland-dev libwayland-egl1
libwayland-server0 libwebp7 libwebpmux3 libx11-6 libx11-data libx11-dev
libx11-xcb1 libx264-163 libx265-199 libxau-dev libxau6 libxcb-dri2-0
libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0
libxcb-render0-dev libxcb-shape0 libxcb-shm0 libxcb-shm0-dev libxcb-sync1
libxcb-xfixes0 libxcb1 libxcb1-dev libxcursor1 libxdmcp-dev libxdmcp6
libxext-dev libxext6 libxfixes3 libxi6 libxinerama1 libxkbcommon0 libxml2
libxmuu1 libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxshmfence1
libxss1 libxv1 libxvidcore4 libxxf86vm1 libzimg2 libzmq5 libzvbi-common
libzvbi0 lto-disabled-list make media-types mesa-va-drivers
mesa-vdpau-drivers mesa-vulkan-drivers moreutils netbase ocl-icd-libopencl1
openssh-client patch perl perl-modules-5.34 pinentry-curses pkg-config
pocketsphinx-en-us publicsuffix python3 python3-distutils python3-lib2to3
python3-minimal python3.10 python3.10-minimal readline-common rsync
shared-mime-info ucf uuid-dev va-driver-all vdpau-driver-all x11-common
x11proto-dev xauth xdg-user-dirs xkb-data xorg-sgml-doctools xtrans-dev
xz-utils
The following packages will be upgraded:
gcc-12-base gpgv libgcc-s1 libstdc++6 perl-base
5 upgraded, 375 newly installed, 0 to remove and 31 not upgraded.
Need to get 268 MB of archives.
After this operation, 914 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 perl-base amd64 5.34.0-3ubuntu1.5 [1761 kB]
Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblocale-gettext-perl amd64 1.07-4build3 [17.1 kB]
Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-minimal amd64 3.10.12-1~22.04.11 [815 kB]
Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1 amd64 2.4.7-1ubuntu0.6 [92.1 kB]
Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-minimal amd64 3.10.12-1~22.04.11 [2264 kB]
Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-minimal amd64 3.10.6-1~22.04.1 [24.3 kB]
Get:7 http://archive.ubuntu.com/ubuntu jammy/main amd64 media-types all 7.0.0 [25.5 kB]
Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-12-base amd64 12.3.0-1ubuntu1~22.04.2 [20.6 kB]
Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-s1 amd64 12.3.0-1ubuntu1~22.04.2 [53.9 kB]
Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++6 amd64 12.3.0-1ubuntu1~22.04.2 [699 kB]
Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpdec3 amd64 2.5.1-2build2 [86.8 kB]
Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 readline-common all 8.1.2-1 [53.5 kB]
Get:13 http://archive.ubuntu.com/ubuntu jammy/main amd64 libreadline8 amd64 8.1.2-1 [153 kB]
Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsqlite3-0 amd64 3.37.2-2ubuntu0.5 [643 kB]
Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-stdlib amd64 3.10.12-1~22.04.11 [1850 kB]
Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10 amd64 3.10.12-1~22.04.11 [508 kB]
Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3-stdlib amd64 3.10.6-1~22.04.1 [6812 B]
Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3 amd64 3.10.6-1~22.04.1 [22.8 kB]
Get:19 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpopt0 amd64 1.18-3build1 [28.2 kB]
Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 rsync amd64 3.2.7-0ubuntu0.22.04.4 [437 kB]
Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 perl-modules-5.34 all 5.34.0-3ubuntu1.5 [2977 kB]
Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgdbm6 amd64 1.23-1 [33.9 kB]
Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgdbm-compat4 amd64 1.23-1 [6606 B]
Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libperl5.34 amd64 5.34.0-3ubuntu1.5 [4797 kB]
Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 perl amd64 5.34.0-3ubuntu1.5 [232 kB]
Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpgv amd64 2.2.27-3ubuntu2.4 [137 kB]
Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libapparmor1 amd64 3.0.4-2ubuntu2.4 [39.7 kB]
Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdbus-1-3 amd64 1.12.20-2ubuntu4.1 [189 kB]
Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 dbus amd64 1.12.20-2ubuntu4.1 [158 kB]
Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 less amd64 590-1ubuntu0.22.04.3 [142 kB]
Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmd0 amd64 1.0.4-1build1 [23.0 kB]
Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 libbsd0 amd64 0.11.5-1 [44.8 kB]
Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libelf1 amd64 0.186-1ubuntu0.1 [51.1 kB]
Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfribidi0 amd64 1.0.8-2ubuntu3.1 [26.1 kB]
Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglib2.0-0 amd64 2.72.4-0ubuntu2.6 [1467 kB]
Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglib2.0-data all 2.72.4-0ubuntu2.6 [4698 B]
Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 libicu70 amd64 70.1-2 [10.6 MB]
Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 libslang2 amd64 2.3.2-5build4 [468 kB]
Get:39 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libxml2 amd64 2.9.13+dfsg-1ubuntu0.9 [764 kB]
Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 netbase all 6.3 [12.9 kB]
Get:41 http://archive.ubuntu.com/ubuntu jammy/main amd64 shared-mime-info amd64 2.1-2 [454 kB]
Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 ucf all 3.0043 [56.1 kB]
Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 xdg-user-dirs amd64 0.17-2ubuntu4 [53.9 kB]
Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 xkb-data all 2.33-1 [394 kB]
Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcbor0.8 amd64 0.8.0-2ubuntu1 [24.6 kB]
Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdrm-common all 2.4.113-2~ubuntu0.22.04.1 [5450 B]
Get:47 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdrm2 amd64 2.4.113-2~ubuntu0.22.04.1 [38.1 kB]
Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 libedit2 amd64 3.1-20210910-1build1 [96.8 kB]
Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfido2-1 amd64 1.10.0-1 [82.8 kB]
Get:50 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnghttp2-14 amd64 1.43.0-1ubuntu0.2 [76.9 kB]
Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 libnuma1 amd64 2.0.14-3ubuntu2 [22.5 kB]
Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpsl5 amd64 0.21.0-1.2build2 [58.4 kB]
Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libusb-1.0-0 amd64 2:1.0.25-1ubuntu2 [52.7 kB]
Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxau6 amd64 1:1.0.9-1build5 [7634 B]
Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxdmcp6 amd64 1:1.1.3-0ubuntu5 [10.9 kB]
Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb1 amd64 1.14-3ubuntu3 [49.0 kB]
Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-data all 2:1.7.5-1ubuntu0.3 [120 kB]
Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-6 amd64 2:1.7.5-1ubuntu0.3 [667 kB]
Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxext6 amd64 2:1.3.4-1build1 [31.8 kB]
Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxmuu1 amd64 2:1.1.3-3 [10.2 kB]
Get:61 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 openssh-client amd64 1:8.9p1-3ubuntu0.13 [903 kB]
Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 publicsuffix all 20211207.1025-1 [129 kB]
Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 xauth amd64 1:1.1-1build2 [27.5 kB]
Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 xz-utils amd64 5.2.5-2ubuntu1 [84.8 kB]
Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 alsa-topology-conf all 1.2.5.1-2 [15.5 kB]
Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2-data all 1.2.6.1-1ubuntu1 [19.1 kB]
Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2 amd64 1.2.6.1-1ubuntu1 [390 kB]
Get:68 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 alsa-ucm-conf all 1.2.6.3-1ubuntu1.12 [43.5 kB]
Get:69 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libc-ares2 amd64 1.18.1-1ubuntu0.22.04.3 [45.1 kB]
Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libssh2-1 amd64 1.10.0-3 [109 kB]
Get:71 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libaria2-0 amd64 1.36.0-1 [1086 kB]
Get:72 http://archive.ubuntu.com/ubuntu jammy/universe amd64 aria2 amd64 1.36.0-1 [381 kB]
Get:73 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils-common amd64 2.38-4ubuntu2.8 [223 kB]
Get:74 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libbinutils amd64 2.38-4ubuntu2.8 [661 kB]
Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libctf-nobfd0 amd64 2.38-4ubuntu2.8 [108 kB]
Get:76 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libctf0 amd64 2.38-4ubuntu2.8 [103 kB]
Get:77 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.38-4ubuntu2.8 [2324 kB]
Get:78 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 binutils amd64 2.38-4ubuntu2.8 [3196 B]
Get:79 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11-base amd64 11.4.0-1ubuntu1~22.04.2 [20.8 kB]
Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libisl23 amd64 0.24-2build1 [727 kB]
Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpfr6 amd64 4.1.0-3build3 [1425 kB]
Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmpc3 amd64 1.2.1-2build1 [46.9 kB]
Get:83 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 cpp-11 amd64 11.4.0-1ubuntu1~22.04.2 [10.0 MB]
Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 cpp amd64 4:11.2.0-1ubuntu1 [27.7 kB]
Get:85 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04.2 [48.3 kB]
Get:86 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgomp1 amd64 12.3.0-1ubuntu1~22.04.2 [127 kB]
Get:87 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04.2 [30.2 kB]
Get:88 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libatomic1 amd64 12.3.0-1ubuntu1~22.04.2 [10.4 kB]
Get:89 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libasan6 amd64 11.4.0-1ubuntu1~22.04.2 [2283 kB]
Get:90 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04.2 [1069 kB]
Get:91 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtsan0 amd64 11.4.0-1ubuntu1~22.04.2 [2262 kB]
Get:92 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04.2 [976 kB]
Get:93 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04.2 [154 kB]
Get:94 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-11-dev amd64 11.4.0-1ubuntu1~22.04.2 [2517 kB]
Get:95 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-11 amd64 11.4.0-1ubuntu1~22.04.2 [20.1 MB]
Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 gcc amd64 4:11.2.0-1ubuntu1 [5112 B]
Get:97 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++-11-dev amd64 11.4.0-1ubuntu1~22.04.2 [2101 kB]
Get:98 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 g++-11 amd64 11.4.0-1ubuntu1~22.04.2 [11.4 MB]
Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 g++ amd64 4:11.2.0-1ubuntu1 [1412 B]
Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 make amd64 4.3-4.1build1 [180 kB]
Get:101 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdpkg-perl all 1.21.1ubuntu2.6 [237 kB]
Get:102 http://archive.ubuntu.com/ubuntu jammy/main amd64 bzip2 amd64 1.0.8-5build1 [34.8 kB]
Get:103 http://archive.ubuntu.com/ubuntu jammy/main amd64 patch amd64 2.7.6-7build2 [109 kB]
Get:104 http://archive.ubuntu.com/ubuntu jammy/main amd64 lto-disabled-list all 24 [12.5 kB]
Get:105 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 dpkg-dev all 1.21.1ubuntu2.6 [922 kB]
Get:106 http://archive.ubuntu.com/ubuntu jammy/main amd64 build-essential amd64 12.9ubuntu3 [4744 B]
Get:107 http://archive.ubuntu.com/ubuntu jammy/main amd64 libassuan0 amd64 2.5.5-1build1 [38.2 kB]
Get:108 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpgconf amd64 2.2.27-3ubuntu2.4 [94.5 kB]
Get:109 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libksba8 amd64 1.6.0-2ubuntu0.2 [119 kB]
Get:110 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg2-3ubuntu1.2 [20.5 kB]
Get:111 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-2 amd64 2.1.27+dfsg2-3ubuntu1.2 [53.8 kB]
Get:112 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libldap-2.5-0 amd64 2.5.19+dfsg-0ubuntu0.22.04.1 [184 kB]
Get:113 http://archive.ubuntu.com/ubuntu jammy/main amd64 libnpth0 amd64 1.6-3build2 [8664 B]
Get:114 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 dirmngr amd64 2.2.27-3ubuntu2.4 [293 kB]
Get:115 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfakeroot amd64 1.28-1ubuntu1 [31.5 kB]
Get:116 http://archive.ubuntu.com/ubuntu jammy/main amd64 fakeroot amd64 1.28-1ubuntu1 [60.4 kB]
Get:117 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libaom3 amd64 3.3.0-1ubuntu0.1 [1748 kB]
Get:118 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva2 amd64 2.14.0-1 [65.0 kB]
Get:119 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmfx1 amd64 22.3.0-1 [3105 kB]
Get:120 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-drm2 amd64 2.14.0-1 [7502 B]
Get:121 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxfixes3 amd64 1:6.0.0-1 [11.7 kB]
Get:122 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-x11-2 amd64 2.14.0-1 [12.6 kB]
Get:123 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvdpau1 amd64 1.4-3build2 [27.0 kB]
Get:124 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ocl-icd-libopencl1 amd64 2.2.14-3 [39.1 kB]
Get:125 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavutil56 amd64 7:4.4.2-0ubuntu0.22.04.1 [290 kB]
Get:126 http://archive.ubuntu.com/ubuntu jammy/main amd64 libbrotli1 amd64 1.0.9-2build6 [315 kB]
Get:127 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6 amd64 2.11.1+dfsg-1ubuntu0.3 [388 kB]
Get:128 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
Get:129 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
Get:130 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB]
Get:131 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpixman-1-0 amd64 0.40.0-1ubuntu0.22.04.1 [264 kB]
Get:132 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-render0 amd64 1.14-3ubuntu3 [16.4 kB]
Get:133 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shm0 amd64 1.14-3ubuntu3 [5780 B]
Get:134 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrender1 amd64 1:0.9.10-1build4 [19.7 kB]
Get:135 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo2 amd64 1.16.0-5ubuntu2 [628 kB]
Get:136 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libcodec2-1.0 amd64 1.0.1-3 [8435 kB]
Get:137 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdav1d5 amd64 0.9.2-1 [463 kB]
Get:138 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgsm1 amd64 1.0.19-1 [27.7 kB]
Get:139 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmp3lame0 amd64 3.100-3build2 [141 kB]
Get:140 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libopenjp2-7 amd64 2.4.0-6ubuntu0.4 [158 kB]
Get:141 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopus0 amd64 1.3.1-0.1build2 [203 kB]
Get:142 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo-gobject2 amd64 1.16.0-5ubuntu2 [19.4 kB]
Get:143 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf2.0-common all 2.42.8+dfsg-1ubuntu0.4 [5546 B]
Get:144 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB]
Get:145 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.22.04.1 [29.2 kB]
Get:146 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebp7 amd64 1.2.2-2ubuntu0.22.04.2 [206 kB]
Get:147 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff5 amd64 4.3.0-6ubuntu0.12 [185 kB]
Get:148 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.8+dfsg-1ubuntu0.4 [148 kB]
Get:149 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig amd64 2.13.1-4.2ubuntu5 [177 kB]
Get:150 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgraphite2-3 amd64 1.3.14-1build2 [71.3 kB]
Get:151 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz0b amd64 2.7.4-1ubuntu3.2 [353 kB]
Get:152 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai-data all 0.1.29-1build1 [162 kB]
Get:153 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdatrie1 amd64 0.2.13-2 [19.9 kB]
Get:154 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai0 amd64 0.1.29-1build1 [19.2 kB]
Get:155 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpango-1.0-0 amd64 1.50.6+ds-2ubuntu1 [230 kB]
Get:156 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangoft2-1.0-0 amd64 1.50.6+ds-2ubuntu1 [54.0 kB]
Get:157 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangocairo-1.0-0 amd64 1.50.6+ds-2ubuntu1 [39.8 kB]
Get:158 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 librsvg2-2 amd64 2.52.5+dfsg-3ubuntu0.2 [2974 kB]
Get:159 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libshine3 amd64 3.1.1-2 [23.2 kB]
Get:160 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsnappy1v5 amd64 1.1.8-1build3 [17.5 kB]
Get:161 http://archive.ubuntu.com/ubuntu jammy/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu3 [57.9 kB]
Get:162 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsoxr0 amd64 0.1.3-4build2 [79.8 kB]
Get:163 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswresample3 amd64 7:4.4.2-0ubuntu0.22.04.1 [62.2 kB]
Get:164 http://archive.ubuntu.com/ubuntu jammy/main amd64 libogg0 amd64 1.3.5-0ubuntu3 [22.9 kB]
Get:165 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu4 [209 kB]
Get:166 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtwolame0 amd64 0.4.0-2build2 [52.5 kB]
Get:167 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbis0a amd64 1.3.7-1build2 [99.2 kB]
Get:168 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisenc2 amd64 1.3.7-1build2 [82.6 kB]
Get:169 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libvpx7 amd64 1.11.0-2ubuntu2.4 [1078 kB]
Get:170 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebpmux3 amd64 1.2.2-2ubuntu0.22.04.2 [20.5 kB]
Get:171 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx264-163 amd64 2:0.163.3060+git5db6aa6-2build1 [591 kB]
Get:172 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx265-199 amd64 3.5-2 [1170 kB]
Get:173 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libxvidcore4 amd64 2:1.3.7-1 [201 kB]
Get:174 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi-common all 0.2.35-19 [35.5 kB]
Get:175 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi0 amd64 0.2.35-19 [262 kB]
Get:176 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavcodec58 amd64 7:4.4.2-0ubuntu0.22.04.1 [5567 kB]
Get:177 http://archive.ubuntu.com/ubuntu jammy/main amd64 libraw1394-11 amd64 2.1.2-2build2 [27.0 kB]
Get:178 http://archive.ubuntu.com/ubuntu jammy/main amd64 libavc1394-0 amd64 0.5.4-5build2 [17.0 kB]
Get:179 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libass9 amd64 1:0.15.2-1 [97.5 kB]
Get:180 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libudfread0 amd64 1.1.2-1 [16.2 kB]
Get:181 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbluray2 amd64 1:1.3.1-1 [159 kB]
Get:182 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libchromaprint1 amd64 1.5.1-2 [28.4 kB]
Get:183 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgme0 amd64 0.6.3-2 [127 kB]
Get:184 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libmpg123-0 amd64 1.29.3-1ubuntu0.1 [172 kB]
Get:185 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisfile3 amd64 1.3.7-1build2 [17.1 kB]
Get:186 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenmpt0 amd64 0.6.1-1 [592 kB]
Get:187 http://archive.ubuntu.com/ubuntu jammy/main amd64 librabbitmq4 amd64 0.10.0-1ubuntu2 [39.3 kB]
Get:188 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsrt1.4-gnutls amd64 1.4.4-4 [309 kB]
Get:189 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libssh-gcrypt-4 amd64 0.9.6-2ubuntu0.22.04.4 [224 kB]
Get:190 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnorm1 amd64 1.5.9+dfsg-2 [221 kB]
Get:191 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB]
Get:192 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsodium23 amd64 1.0.18-1build2 [164 kB]
Get:193 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzmq5 amd64 4.3.4-2 [256 kB]
Get:194 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavformat58 amd64 7:4.4.2-0ubuntu0.22.04.1 [1103 kB]
Get:195 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbs2b0 amd64 3.1.0+dfsg-2.2build1 [10.2 kB]
Get:196 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libflite1 amd64 2.2-3 [13.7 MB]
Get:197 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libserd-0-0 amd64 0.30.10-2 [40.8 kB]
Get:198 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsord-0-0 amd64 0.16.8-2 [21.2 kB]
Get:199 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsratom-0-0 amd64 0.6.8-1 [17.0 kB]
Get:200 http://archive.ubuntu.com/ubuntu jammy/universe amd64 liblilv-0-0 amd64 0.24.12-2 [42.8 kB]
Get:201 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmysofa1 amd64 1.2.1~dfsg0-1 [1157 kB]
Get:202 http://archive.ubuntu.com/ubuntu jammy/main amd64 libblas3 amd64 3.10.0-2ubuntu1 [228 kB]
Get:203 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgfortran5 amd64 12.3.0-1ubuntu1~22.04.2 [879 kB]
Get:204 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblapack3 amd64 3.10.0-2ubuntu1 [2504 kB]
Get:205 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasyncns0 amd64 0.8-6build2 [12.8 kB]
Get:206 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac8 amd64 1.3.3-2ubuntu0.2 [111 kB]
Get:207 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsndfile1 amd64 1.0.31-2ubuntu0.2 [196 kB]
Get:208 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-xcb1 amd64 2:1.7.5-1ubuntu0.3 [7802 B]
Get:209 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpulse0 amd64 1:15.99.1+dfsg1-1ubuntu2.2 [298 kB]
Get:210 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsphinxbase3 amd64 0.8+5prealpha+1-13build1 [126 kB]
Get:211 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpocketsphinx3 amd64 0.8.0+real5prealpha+1-14ubuntu1 [132 kB]
Get:212 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libpostproc55 amd64 7:4.4.2-0ubuntu0.22.04.1 [60.1 kB]
Get:213 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsamplerate0 amd64 0.2.2-1build1 [1359 kB]
Get:214 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librubberband2 amd64 2.0.0-2 [90.0 kB]
Get:215 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswscale5 amd64 7:4.4.2-0ubuntu0.22.04.1 [180 kB]
Get:216 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libvidstab1.1 amd64 1.1.0-2 [35.0 kB]
Get:217 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzimg2 amd64 3.0.3+ds1-1 [241 kB]
Get:218 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavfilter7 amd64 7:4.4.2-0ubuntu0.22.04.1 [1496 kB]
Get:219 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcaca0 amd64 0.99.beta19-2.2ubuntu4 [224 kB]
Get:220 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcdio19 amd64 2.1.0-3ubuntu0.2 [63.6 kB]
Get:221 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-cdda2 amd64 10.2+2.0.0-1build3 [16.7 kB]
Get:222 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-paranoia2 amd64 10.2+2.0.0-1build3 [15.9 kB]
Get:223 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdc1394-25 amd64 2.2.6-4 [88.8 kB]
Get:224 http://archive.ubuntu.com/ubuntu jammy/main amd64 libglvnd0 amd64 1.4.0-1 [73.6 kB]
Get:225 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglapi-mesa amd64 23.2.1-1ubuntu3.1~22.04.3 [35.4 kB]
Get:226 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-dri2-0 amd64 1.14-3ubuntu3 [7206 B]
Get:227 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-dri3-0 amd64 1.14-3ubuntu3 [6968 B]
Get:228 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-glx0 amd64 1.14-3ubuntu3 [25.9 kB]
Get:229 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-present0 amd64 1.14-3ubuntu3 [5734 B]
Get:230 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-randr0 amd64 1.14-3ubuntu3 [18.3 kB]
Get:231 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-sync1 amd64 1.14-3ubuntu3 [9416 B]
Get:232 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-xfixes0 amd64 1.14-3ubuntu3 [9996 B]
Get:233 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxshmfence1 amd64 1.3-1build4 [5394 B]
Get:234 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxxf86vm1 amd64 1:1.1.4-1build3 [10.4 kB]
Get:235 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdrm-amdgpu1 amd64 2.4.113-2~ubuntu0.22.04.1 [19.9 kB]
Get:236 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpciaccess0 amd64 0.16-3 [19.1 kB]
Get:237 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdrm-intel1 amd64 2.4.113-2~ubuntu0.22.04.1 [66.7 kB]
Get:238 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdrm-nouveau2 amd64 2.4.113-2~ubuntu0.22.04.1 [17.5 kB]
Get:239 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdrm-radeon1 amd64 2.4.113-2~ubuntu0.22.04.1 [21.6 kB]
Get:240 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libllvm15 amd64 1:15.0.7-0ubuntu0.22.04.3 [25.4 MB]
Get:241 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsensors-config all 1:3.6.0-7ubuntu1 [5274 B]
Get:242 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsensors5 amd64 1:3.6.0-7ubuntu1 [26.3 kB]
Get:243 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgl1-mesa-dri amd64 23.2.1-1ubuntu3.1~22.04.3 [8860 kB]
Get:244 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglx-mesa0 amd64 23.2.1-1ubuntu3.1~22.04.3 [158 kB]
Get:245 http://archive.ubuntu.com/ubuntu jammy/main amd64 libglx0 amd64 1.4.0-1 [41.0 kB]
Get:246 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgl1 amd64 1.4.0-1 [110 kB]
Get:247 http://archive.ubuntu.com/ubuntu jammy/main amd64 libiec61883-0 amd64 1.2.0-4build3 [25.9 kB]
Get:248 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjack-jackd2-0 amd64 1.9.20~dfsg-1 [293 kB]
Get:249 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal-data all 1:1.19.1-2build3 [164 kB]
Get:250 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsndio7.0 amd64 1.8.1-1.1 [29.3 kB]
Get:251 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal1 amd64 1:1.19.1-2build3 [535 kB]
Get:252 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-client0 amd64 1.20.0-1ubuntu0.1 [25.9 kB]
Get:253 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdecor-0-0 amd64 0.1.0-3build1 [15.1 kB]
Get:254 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-server0 amd64 1.20.0-1ubuntu0.1 [34.3 kB]
Get:255 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgbm1 amd64 23.2.1-1ubuntu3.1~22.04.3 [33.5 kB]
Get:256 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-cursor0 amd64 1.20.0-1ubuntu0.1 [10.7 kB]
Get:257 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-egl1 amd64 1.20.0-1ubuntu0.1 [5582 B]
Get:258 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcursor1 amd64 1:1.2.0-2build4 [20.9 kB]
Get:259 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxi6 amd64 2:1.8-1build1 [32.6 kB]
Get:260 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxinerama1 amd64 2:1.1.4-3 [7382 B]
Get:261 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxkbcommon0 amd64 1.4.0-1 [125 kB]
Get:262 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrandr2 amd64 2:1.5.2-1build1 [20.4 kB]
Get:263 http://archive.ubuntu.com/ubuntu jammy/main amd64 x11-common all 1:7.7+23ubuntu2 [23.4 kB]
Get:264 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxss1 amd64 1:1.2.3-1build2 [8476 B]
Get:265 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsdl2-2.0-0 amd64 2.0.20+dfsg-2ubuntu1.22.04.1 [582 kB]
Get:266 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shape0 amd64 1.14-3ubuntu3 [6158 B]
Get:267 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxv1 amd64 2:1.0.11-1build2 [11.2 kB]
Get:268 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavdevice58 amd64 7:4.4.2-0ubuntu0.22.04.1 [87.5 kB]
Get:269 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 ffmpeg amd64 7:4.4.2-0ubuntu0.22.04.1 [1696 kB]
Get:270 http://archive.ubuntu.com/ubuntu jammy/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2build4 [58.2 kB]
Get:271 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libssh-4 amd64 0.9.6-2ubuntu0.22.04.4 [187 kB]
Get:272 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcurl3-gnutls amd64 7.81.0-1ubuntu1.21 [284 kB]
Get:273 http://archive.ubuntu.com/ubuntu jammy/main amd64 liberror-perl all 0.17029-1 [26.5 kB]
Get:274 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git-man all 1:2.34.1-1ubuntu1.15 [955 kB]
Get:275 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git amd64 1:2.34.1-1ubuntu1.15 [3166 kB]
Get:276 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg-l10n all 2.2.27-3ubuntu2.4 [54.7 kB]
Get:277 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg-utils amd64 2.2.27-3ubuntu2.4 [309 kB]
Get:278 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg amd64 2.2.27-3ubuntu2.4 [518 kB]
Get:279 http://archive.ubuntu.com/ubuntu jammy/main amd64 pinentry-curses amd64 1.1.1-1build2 [34.4 kB]
Get:280 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-agent amd64 2.2.27-3ubuntu2.4 [209 kB]
Get:281 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-wks-client amd64 2.2.27-3ubuntu2.4 [62.7 kB]
Get:282 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpg-wks-server amd64 2.2.27-3ubuntu2.4 [57.5 kB]
Get:283 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gpgsm amd64 2.2.27-3ubuntu2.4 [197 kB]
Get:284 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gnupg all 2.2.27-3ubuntu2.4 [315 kB]
Get:285 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libigdgmm12 amd64 22.1.2+ds1-1 [139 kB]
Get:286 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 intel-media-va-driver amd64 22.3.1+dfsg1-1ubuntu2 [2283 kB]
Get:287 http://archive.ubuntu.com/ubuntu jammy/main amd64 libonig5 amd64 6.9.7.1-2build1 [172 kB]
Get:288 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjq1 amd64 1.6-2.1ubuntu3.1 [133 kB]
Get:289 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 jq amd64 1.6-2.1ubuntu3.1 [52.5 kB]
Get:290 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libaacs0 amd64 0.11.1-1 [64.1 kB]
Get:291 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
Get:292 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-diff-xs-perl amd64 0.04-6build3 [11.9 kB]
Get:293 http://archive.ubuntu.com/ubuntu jammy/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
Get:294 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbdplus0 amd64 0.2.0-1 [52.2 kB]
Get:295 http://archive.ubuntu.com/ubuntu jammy/main amd64 libbrotli-dev amd64 1.0.9-2build6 [337 kB]
Get:296 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblzo2-2 amd64 2.10-2build3 [53.7 kB]
Get:297 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo-script-interpreter2 amd64 1.16.0-5ubuntu2 [62.0 kB]
Get:298 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1-dev amd64 2.4.7-1ubuntu0.6 [148 kB]
Get:299 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype-dev amd64 2.11.1+dfsg-1ubuntu0.3 [555 kB]
Get:300 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6-dev amd64 2.11.1+dfsg-1ubuntu0.3 [8298 B]
Get:301 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 uuid-dev amd64 2.37.2-4ubuntu3.4 [33.1 kB]
Get:302 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB]
Get:303 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig-dev amd64 2.13.1-4.2ubuntu5 [151 kB]
Get:304 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1-dev amd64 2.13.1-4.2ubuntu5 [1836 B]
Get:305 http://archive.ubuntu.com/ubuntu jammy/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB]
Get:306 http://archive.ubuntu.com/ubuntu jammy/main amd64 x11proto-dev all 2021.5-1 [604 kB]
Get:307 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxau-dev amd64 1:1.0.9-1build5 [9724 B]
Get:308 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxdmcp-dev amd64 1:1.1.3-0ubuntu5 [26.5 kB]
Get:309 http://archive.ubuntu.com/ubuntu jammy/main amd64 xtrans-dev all 1.4.0-1 [68.9 kB]
Get:310 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpthread-stubs0-dev amd64 0.4-1build2 [5516 B]
Get:311 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb1-dev amd64 1.14-3ubuntu3 [86.5 kB]
Get:312 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libx11-dev amd64 2:1.7.5-1ubuntu0.3 [744 kB]
Get:313 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrender-dev amd64 1:0.9.10-1build4 [26.7 kB]
Get:314 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxext-dev amd64 2:1.3.4-1build1 [84.7 kB]
Get:315 http://archive.ubuntu.com/ubuntu jammy/main amd64 libice6 amd64 2:1.0.10-1build2 [42.6 kB]
Get:316 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsm6 amd64 2:1.2.3-1build2 [16.7 kB]
Get:317 http://archive.ubuntu.com/ubuntu jammy/main amd64 libice-dev amd64 2:1.0.10-1build2 [51.4 kB]
Get:318 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsm-dev amd64 2:1.2.3-1build2 [18.1 kB]
Get:319 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpixman-1-dev amd64 0.40.0-1ubuntu0.22.04.1 [280 kB]
Get:320 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-render0-dev amd64 1.14-3ubuntu3 [19.6 kB]
Get:321 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shm0-dev amd64 1.14-3ubuntu3 [6848 B]
Get:322 http://archive.ubuntu.com/ubuntu jammy/main amd64 libffi-dev amd64 3.4.2-4 [63.7 kB]
Get:323 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglib2.0-bin amd64 2.72.4-0ubuntu2.6 [80.9 kB]
Get:324 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-lib2to3 all 3.10.8-1~22.04 [77.6 kB]
Get:325 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-distutils all 3.10.8-1~22.04 [139 kB]
Get:326 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglib2.0-dev-bin amd64 2.72.4-0ubuntu2.6 [117 kB]
Get:327 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libblkid-dev amd64 2.37.2-4ubuntu3.4 [185 kB]
Get:328 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsepol-dev amd64 3.3-1build1 [378 kB]
Get:329 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-16-0 amd64 10.39-3ubuntu0.1 [203 kB]
Get:330 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-32-0 amd64 10.39-3ubuntu0.1 [194 kB]
Get:331 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-posix3 amd64 10.39-3ubuntu0.1 [6130 B]
Get:332 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre2-dev amd64 10.39-3ubuntu0.1 [730 kB]
Get:333 http://archive.ubuntu.com/ubuntu jammy/main amd64 libselinux1-dev amd64 3.3-1build2 [158 kB]
Get:334 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libmount-dev amd64 2.37.2-4ubuntu3.4 [14.5 kB]
Get:335 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre16-3 amd64 2:8.39-13ubuntu0.22.04.1 [164 kB]
Get:336 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre32-3 amd64 2:8.39-13ubuntu0.22.04.1 [155 kB]
Get:337 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcrecpp0v5 amd64 2:8.39-13ubuntu0.22.04.1 [16.5 kB]
Get:338 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpcre3-dev amd64 2:8.39-13ubuntu0.22.04.1 [579 kB]
Get:339 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libglib2.0-dev amd64 2.72.4-0ubuntu2.6 [1743 kB]
Get:340 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo2-dev amd64 1.16.0-5ubuntu2 [692 kB]
Get:341 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdecor-0-plugin-1-cairo amd64 0.1.0-3build1 [20.4 kB]
Get:342 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libegl-mesa0 amd64 23.2.1-1ubuntu3.1~22.04.3 [118 kB]
Get:343 http://archive.ubuntu.com/ubuntu jammy/main amd64 libegl1 amd64 1.4.0-1 [28.6 kB]
Get:344 http://archive.ubuntu.com/ubuntu jammy/main amd64 libglx-dev amd64 1.4.0-1 [14.1 kB]
Get:345 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgl-dev amd64 1.4.0-1 [101 kB]
Get:346 http://archive.ubuntu.com/ubuntu jammy/main amd64 libegl-dev amd64 1.4.0-1 [18.0 kB]
Get:347 http://archive.ubuntu.com/ubuntu jammy/main amd64 libglvnd-core-dev amd64 1.4.0-1 [12.7 kB]
Get:348 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgles1 amd64 1.4.0-1 [11.5 kB]
Get:349 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgles2 amd64 1.4.0-1 [18.0 kB]
Get:350 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgles-dev amd64 1.4.0-1 [49.4 kB]
Get:351 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopengl0 amd64 1.4.0-1 [36.5 kB]
Get:352 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopengl-dev amd64 1.4.0-1 [3400 B]
Get:353 http://archive.ubuntu.com/ubuntu jammy/main amd64 libglvnd-dev amd64 1.4.0-1 [3162 B]
Get:354 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libegl1-mesa-dev amd64 23.2.1-1ubuntu3.1~22.04.3 [11.1 kB]
Get:355 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfile-fcntllock-perl amd64 0.22-3build7 [33.9 kB]
Get:356 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf2.0-bin amd64 2.42.8+dfsg-1ubuntu0.4 [14.1 kB]
Get:357 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgl1-amber-dri amd64 21.3.9-0ubuntu1~22.04.1 [4218 kB]
Get:358 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgles2-mesa-dev amd64 23.2.1-1ubuntu3.1~22.04.3 [6854 B]
Get:359 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libglfw3 amd64 3.3.6-1 [83.2 kB]
Get:360 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libglfw3-dev amd64 3.3.6-1 [41.1 kB]
Get:361 http://archive.ubuntu.com/ubuntu jammy/main amd64 libio-pty-perl amd64 1:1.15-2build2 [35.1 kB]
Get:362 http://archive.ubuntu.com/ubuntu jammy/main amd64 libipc-run-perl all 20200505.0-1 [89.8 kB]
Get:363 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libldap-common all 2.5.19+dfsg-0ubuntu0.22.04.1 [16.1 kB]
Get:364 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 librsvg2-common amd64 2.52.5+dfsg-3ubuntu0.2 [17.7 kB]
Get:365 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsasl2-modules amd64 2.1.27+dfsg2-3ubuntu1.2 [68.8 kB]
Get:366 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtime-duration-perl all 1.21-1 [13.1 kB]
Get:367 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtimedate-perl all 2.3300-2 [34.0 kB]
Get:368 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvulkan1 amd64 1.3.204.1-2 [128 kB]
Get:369 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvulkan-dev amd64 1.3.204.1-2 [892 kB]
Get:370 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrandr-dev amd64 2:1.5.2-1build1 [26.7 kB]
Get:371 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 mesa-va-drivers amd64 23.2.1-1ubuntu3.1~22.04.3 [4100 kB]
Get:372 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 mesa-vdpau-drivers amd64 23.2.1-1ubuntu3.1~22.04.3 [3820 kB]
Get:373 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 mesa-vulkan-drivers amd64 23.2.1-1ubuntu3.1~22.04.3 [10.7 MB]
Get:374 http://archive.ubuntu.com/ubuntu jammy/universe amd64 moreutils amd64 0.66-1 [63.3 kB]
Get:375 http://archive.ubuntu.com/ubuntu jammy/universe amd64 i965-va-driver amd64 2.4.1+dfsg1-1 [302 kB]
Get:376 http://archive.ubuntu.com/ubuntu jammy/universe amd64 va-driver-all amd64 2.14.0-1 [3984 B]
Get:377 http://archive.ubuntu.com/ubuntu jammy/main amd64 vdpau-driver-all amd64 1.4-3build2 [4510 B]
Get:378 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-bin amd64 1.20.0-1ubuntu0.1 [20.4 kB]
Get:379 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-dev amd64 1.20.0-1ubuntu0.1 [69.5 kB]
Get:380 http://archive.ubuntu.com/ubuntu jammy/universe amd64 pocketsphinx-en-us all 0.8.0+real5prealpha+1-14ubuntu1 [27.6 MB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 268 MB in 6min 46s (659 kB/s)
(Reading database ... 6643 files and directories currently installed.)
Preparing to unpack .../perl-base_5.34.0-3ubuntu1.5_amd64.deb ...
Unpacking perl-base (5.34.0-3ubuntu1.5) over (5.34.0-3ubuntu1.3) ...
Setting up perl-base (5.34.0-3ubuntu1.5) ...
Selecting previously unselected package liblocale-gettext-perl.
(Reading database ... 6643 files and directories currently installed.)
Preparing to unpack .../liblocale-gettext-perl_1.07-4build3_amd64.deb ...
Unpacking liblocale-gettext-perl (1.07-4build3) ...
Selecting previously unselected package libpython3.10-minimal:amd64.
Preparing to unpack .../libpython3.10-minimal_3.10.12-1~22.04.11_amd64.deb ...
Unpacking libpython3.10-minimal:amd64 (3.10.12-1~22.04.11) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.4.7-1ubuntu0.6_amd64.deb ...
Unpacking libexpat1:amd64 (2.4.7-1ubuntu0.6) ...
Selecting previously unselected package python3.10-minimal.
Preparing to unpack .../python3.10-minimal_3.10.12-1~22.04.11_amd64.deb ...
Unpacking python3.10-minimal (3.10.12-1~22.04.11) ...
Setting up libpython3.10-minimal:amd64 (3.10.12-1~22.04.11) ...
Setting up libexpat1:amd64 (2.4.7-1ubuntu0.6) ...
Setting up python3.10-minimal (3.10.12-1~22.04.11) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 6961 files and directories currently installed.)
Preparing to unpack .../python3-minimal_3.10.6-1~22.04.1_amd64.deb ...
Unpacking python3-minimal (3.10.6-1~22.04.1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../media-types_7.0.0_all.deb ...
Unpacking media-types (7.0.0) ...
Preparing to unpack .../gcc-12-base_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04.2) over (12.3.0-1ubuntu1~22.04) ...
Setting up gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04.2) ...
(Reading database ... 6988 files and directories currently installed.)
Preparing to unpack .../libgcc-s1_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04.2) over (12.3.0-1ubuntu1~22.04) ...
Setting up libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
(Reading database ... 6988 files and directories currently installed.)
Preparing to unpack .../libstdc++6_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libstdc++6:amd64 (12.3.0-1ubuntu1~22.04.2) over (12.3.0-1ubuntu1~22.04) ...
Setting up libstdc++6:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libmpdec3:amd64.
(Reading database ... 6988 files and directories currently installed.)
Preparing to unpack .../0-libmpdec3_2.5.1-2build2_amd64.deb ...
Unpacking libmpdec3:amd64 (2.5.1-2build2) ...
Selecting previously unselected package readline-common.
Preparing to unpack .../1-readline-common_8.1.2-1_all.deb ...
Unpacking readline-common (8.1.2-1) ...
Selecting previously unselected package libreadline8:amd64.
Preparing to unpack .../2-libreadline8_8.1.2-1_amd64.deb ...
Unpacking libreadline8:amd64 (8.1.2-1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../3-libsqlite3-0_3.37.2-2ubuntu0.5_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.37.2-2ubuntu0.5) ...
Selecting previously unselected package libpython3.10-stdlib:amd64.
Preparing to unpack .../4-libpython3.10-stdlib_3.10.12-1~22.04.11_amd64.deb ...
Unpacking libpython3.10-stdlib:amd64 (3.10.12-1~22.04.11) ...
Selecting previously unselected package python3.10.
Preparing to unpack .../5-python3.10_3.10.12-1~22.04.11_amd64.deb ...
Unpacking python3.10 (3.10.12-1~22.04.11) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../6-libpython3-stdlib_3.10.6-1~22.04.1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.10.6-1~22.04.1) ...
Setting up python3-minimal (3.10.6-1~22.04.1) ...
Selecting previously unselected package python3.
(Reading database ... 7391 files and directories currently installed.)
Preparing to unpack .../0-python3_3.10.6-1~22.04.1_amd64.deb ...
Unpacking python3 (3.10.6-1~22.04.1) ...
Selecting previously unselected package libpopt0:amd64.
Preparing to unpack .../1-libpopt0_1.18-3build1_amd64.deb ...
Unpacking libpopt0:amd64 (1.18-3build1) ...
Selecting previously unselected package rsync.
Preparing to unpack .../2-rsync_3.2.7-0ubuntu0.22.04.4_amd64.deb ...
Unpacking rsync (3.2.7-0ubuntu0.22.04.4) ...
Selecting previously unselected package perl-modules-5.34.
Preparing to unpack .../3-perl-modules-5.34_5.34.0-3ubuntu1.5_all.deb ...
Unpacking perl-modules-5.34 (5.34.0-3ubuntu1.5) ...
Selecting previously unselected package libgdbm6:amd64.
Preparing to unpack .../4-libgdbm6_1.23-1_amd64.deb ...
Unpacking libgdbm6:amd64 (1.23-1) ...
Selecting previously unselected package libgdbm-compat4:amd64.
Preparing to unpack .../5-libgdbm-compat4_1.23-1_amd64.deb ...
Unpacking libgdbm-compat4:amd64 (1.23-1) ...
Selecting previously unselected package libperl5.34:amd64.
Preparing to unpack .../6-libperl5.34_5.34.0-3ubuntu1.5_amd64.deb ...
Unpacking libperl5.34:amd64 (5.34.0-3ubuntu1.5) ...
Selecting previously unselected package perl.
Preparing to unpack .../7-perl_5.34.0-3ubuntu1.5_amd64.deb ...
Unpacking perl (5.34.0-3ubuntu1.5) ...
Preparing to unpack .../8-gpgv_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gpgv (2.2.27-3ubuntu2.4) over (2.2.27-3ubuntu2.1) ...
Setting up gpgv (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package libapparmor1:amd64.
(Reading database ... 9439 files and directories currently installed.)
Preparing to unpack .../000-libapparmor1_3.0.4-2ubuntu2.4_amd64.deb ...
Unpacking libapparmor1:amd64 (3.0.4-2ubuntu2.4) ...
Selecting previously unselected package libdbus-1-3:amd64.
Preparing to unpack .../001-libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ...
Selecting previously unselected package dbus.
Preparing to unpack .../002-dbus_1.12.20-2ubuntu4.1_amd64.deb ...
Unpacking dbus (1.12.20-2ubuntu4.1) ...
Selecting previously unselected package less.
Preparing to unpack .../003-less_590-1ubuntu0.22.04.3_amd64.deb ...
Unpacking less (590-1ubuntu0.22.04.3) ...
Selecting previously unselected package libmd0:amd64.
Preparing to unpack .../004-libmd0_1.0.4-1build1_amd64.deb ...
Unpacking libmd0:amd64 (1.0.4-1build1) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../005-libbsd0_0.11.5-1_amd64.deb ...
Unpacking libbsd0:amd64 (0.11.5-1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../006-libelf1_0.186-1ubuntu0.1_amd64.deb ...
Unpacking libelf1:amd64 (0.186-1ubuntu0.1) ...
Selecting previously unselected package libfribidi0:amd64.
Preparing to unpack .../007-libfribidi0_1.0.8-2ubuntu3.1_amd64.deb ...
Unpacking libfribidi0:amd64 (1.0.8-2ubuntu3.1) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../008-libglib2.0-0_2.72.4-0ubuntu2.6_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.72.4-0ubuntu2.6) ...
Selecting previously unselected package libglib2.0-data.
Preparing to unpack .../009-libglib2.0-data_2.72.4-0ubuntu2.6_all.deb ...
Unpacking libglib2.0-data (2.72.4-0ubuntu2.6) ...
Selecting previously unselected package libicu70:amd64.
Preparing to unpack .../010-libicu70_70.1-2_amd64.deb ...
Unpacking libicu70:amd64 (70.1-2) ...
Selecting previously unselected package libslang2:amd64.
Preparing to unpack .../011-libslang2_2.3.2-5build4_amd64.deb ...
Unpacking libslang2:amd64 (2.3.2-5build4) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../012-libxml2_2.9.13+dfsg-1ubuntu0.9_amd64.deb ...
Unpacking libxml2:amd64 (2.9.13+dfsg-1ubuntu0.9) ...
Selecting previously unselected package netbase.
Preparing to unpack .../013-netbase_6.3_all.deb ...
Unpacking netbase (6.3) ...
Selecting previously unselected package shared-mime-info.
Preparing to unpack .../014-shared-mime-info_2.1-2_amd64.deb ...
Unpacking shared-mime-info (2.1-2) ...
Selecting previously unselected package ucf.
Preparing to unpack .../015-ucf_3.0043_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0043) ...
Selecting previously unselected package xdg-user-dirs.
Preparing to unpack .../016-xdg-user-dirs_0.17-2ubuntu4_amd64.deb ...
Unpacking xdg-user-dirs (0.17-2ubuntu4) ...
Selecting previously unselected package xkb-data.
Preparing to unpack .../017-xkb-data_2.33-1_all.deb ...
Unpacking xkb-data (2.33-1) ...
Selecting previously unselected package libcbor0.8:amd64.
Preparing to unpack .../018-libcbor0.8_0.8.0-2ubuntu1_amd64.deb ...
Unpacking libcbor0.8:amd64 (0.8.0-2ubuntu1) ...
Selecting previously unselected package libdrm-common.
Preparing to unpack .../019-libdrm-common_2.4.113-2~ubuntu0.22.04.1_all.deb ...
Unpacking libdrm-common (2.4.113-2~ubuntu0.22.04.1) ...
Selecting previously unselected package libdrm2:amd64.
Preparing to unpack .../020-libdrm2_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
Unpacking libdrm2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../021-libedit2_3.1-20210910-1build1_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20210910-1build1) ...
Selecting previously unselected package libfido2-1:amd64.
Preparing to unpack .../022-libfido2-1_1.10.0-1_amd64.deb ...
Unpacking libfido2-1:amd64 (1.10.0-1) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../023-libnghttp2-14_1.43.0-1ubuntu0.2_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.43.0-1ubuntu0.2) ...
Selecting previously unselected package libnuma1:amd64.
Preparing to unpack .../024-libnuma1_2.0.14-3ubuntu2_amd64.deb ...
Unpacking libnuma1:amd64 (2.0.14-3ubuntu2) ...
Selecting previously unselected package libpsl5:amd64.
Preparing to unpack .../025-libpsl5_0.21.0-1.2build2_amd64.deb ...
Unpacking libpsl5:amd64 (0.21.0-1.2build2) ...
Selecting previously unselected package libusb-1.0-0:amd64.
Preparing to unpack .../026-libusb-1.0-0_2%3a1.0.25-1ubuntu2_amd64.deb ...
Unpacking libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../027-libxau6_1%3a1.0.9-1build5_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.9-1build5) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../028-libxdmcp6_1%3a1.1.3-0ubuntu5_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.3-0ubuntu5) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../029-libxcb1_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb1:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../030-libx11-data_2%3a1.7.5-1ubuntu0.3_all.deb ...
Unpacking libx11-data (2:1.7.5-1ubuntu0.3) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../031-libx11-6_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.7.5-1ubuntu0.3) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../032-libxext6_2%3a1.3.4-1build1_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.4-1build1) ...
Selecting previously unselected package libxmuu1:amd64.
Preparing to unpack .../033-libxmuu1_2%3a1.1.3-3_amd64.deb ...
Unpacking libxmuu1:amd64 (2:1.1.3-3) ...
Selecting previously unselected package openssh-client.
Preparing to unpack .../034-openssh-client_1%3a8.9p1-3ubuntu0.13_amd64.deb ...
Unpacking openssh-client (1:8.9p1-3ubuntu0.13) ...
Selecting previously unselected package publicsuffix.
Preparing to unpack .../035-publicsuffix_20211207.1025-1_all.deb ...
Unpacking publicsuffix (20211207.1025-1) ...
Selecting previously unselected package xauth.
Preparing to unpack .../036-xauth_1%3a1.1-1build2_amd64.deb ...
Unpacking xauth (1:1.1-1build2) ...
Selecting previously unselected package xz-utils.
Preparing to unpack .../037-xz-utils_5.2.5-2ubuntu1_amd64.deb ...
Unpacking xz-utils (5.2.5-2ubuntu1) ...
Selecting previously unselected package alsa-topology-conf.
Preparing to unpack .../038-alsa-topology-conf_1.2.5.1-2_all.deb ...
Unpacking alsa-topology-conf (1.2.5.1-2) ...
Selecting previously unselected package libasound2-data.
Preparing to unpack .../039-libasound2-data_1.2.6.1-1ubuntu1_all.deb ...
Unpacking libasound2-data (1.2.6.1-1ubuntu1) ...
Selecting previously unselected package libasound2:amd64.
Preparing to unpack .../040-libasound2_1.2.6.1-1ubuntu1_amd64.deb ...
Unpacking libasound2:amd64 (1.2.6.1-1ubuntu1) ...
Selecting previously unselected package alsa-ucm-conf.
Preparing to unpack .../041-alsa-ucm-conf_1.2.6.3-1ubuntu1.12_all.deb ...
Unpacking alsa-ucm-conf (1.2.6.3-1ubuntu1.12) ...
Selecting previously unselected package libc-ares2:amd64.
Preparing to unpack .../042-libc-ares2_1.18.1-1ubuntu0.22.04.3_amd64.deb ...
Unpacking libc-ares2:amd64 (1.18.1-1ubuntu0.22.04.3) ...
Selecting previously unselected package libssh2-1:amd64.
Preparing to unpack .../043-libssh2-1_1.10.0-3_amd64.deb ...
Unpacking libssh2-1:amd64 (1.10.0-3) ...
Selecting previously unselected package libaria2-0:amd64.
Preparing to unpack .../044-libaria2-0_1.36.0-1_amd64.deb ...
Unpacking libaria2-0:amd64 (1.36.0-1) ...
Selecting previously unselected package aria2.
Preparing to unpack .../045-aria2_1.36.0-1_amd64.deb ...
Unpacking aria2 (1.36.0-1) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../046-binutils-common_2.38-4ubuntu2.8_amd64.deb ...
Unpacking binutils-common:amd64 (2.38-4ubuntu2.8) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../047-libbinutils_2.38-4ubuntu2.8_amd64.deb ...
Unpacking libbinutils:amd64 (2.38-4ubuntu2.8) ...
Selecting previously unselected package libctf-nobfd0:amd64.
Preparing to unpack .../048-libctf-nobfd0_2.38-4ubuntu2.8_amd64.deb ...
Unpacking libctf-nobfd0:amd64 (2.38-4ubuntu2.8) ...
Selecting previously unselected package libctf0:amd64.
Preparing to unpack .../049-libctf0_2.38-4ubuntu2.8_amd64.deb ...
Unpacking libctf0:amd64 (2.38-4ubuntu2.8) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../050-binutils-x86-64-linux-gnu_2.38-4ubuntu2.8_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.38-4ubuntu2.8) ...
Selecting previously unselected package binutils.
Preparing to unpack .../051-binutils_2.38-4ubuntu2.8_amd64.deb ...
Unpacking binutils (2.38-4ubuntu2.8) ...
Selecting previously unselected package gcc-11-base:amd64.
Preparing to unpack .../052-gcc-11-base_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libisl23:amd64.
Preparing to unpack .../053-libisl23_0.24-2build1_amd64.deb ...
Unpacking libisl23:amd64 (0.24-2build1) ...
Selecting previously unselected package libmpfr6:amd64.
Preparing to unpack .../054-libmpfr6_4.1.0-3build3_amd64.deb ...
Unpacking libmpfr6:amd64 (4.1.0-3build3) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../055-libmpc3_1.2.1-2build1_amd64.deb ...
Unpacking libmpc3:amd64 (1.2.1-2build1) ...
Selecting previously unselected package cpp-11.
Preparing to unpack .../056-cpp-11_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking cpp-11 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package cpp.
Preparing to unpack .../057-cpp_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking cpp (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../058-libcc1-0_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../059-libgomp1_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libgomp1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../060-libitm1_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../061-libatomic1_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libatomic1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libasan6:amd64.
Preparing to unpack .../062-libasan6_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libasan6:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../063-liblsan0_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../064-libtsan0_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libtsan0:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../065-libubsan1_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../066-libquadmath0_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package libgcc-11-dev:amd64.
Preparing to unpack .../067-libgcc-11-dev_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package gcc-11.
Preparing to unpack .../068-gcc-11_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking gcc-11 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package gcc.
Preparing to unpack .../069-gcc_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking gcc (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package libstdc++-11-dev:amd64.
Preparing to unpack .../070-libstdc++-11-dev_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package g++-11.
Preparing to unpack .../071-g++-11_11.4.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking g++-11 (11.4.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package g++.
Preparing to unpack .../072-g++_4%3a11.2.0-1ubuntu1_amd64.deb ...
Unpacking g++ (4:11.2.0-1ubuntu1) ...
Selecting previously unselected package make.
Preparing to unpack .../073-make_4.3-4.1build1_amd64.deb ...
Unpacking make (4.3-4.1build1) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../074-libdpkg-perl_1.21.1ubuntu2.6_all.deb ...
Unpacking libdpkg-perl (1.21.1ubuntu2.6) ...
Selecting previously unselected package bzip2.
Preparing to unpack .../075-bzip2_1.0.8-5build1_amd64.deb ...
Unpacking bzip2 (1.0.8-5build1) ...
Selecting previously unselected package patch.
Preparing to unpack .../076-patch_2.7.6-7build2_amd64.deb ...
Unpacking patch (2.7.6-7build2) ...
Selecting previously unselected package lto-disabled-list.
Preparing to unpack .../077-lto-disabled-list_24_all.deb ...
Unpacking lto-disabled-list (24) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../078-dpkg-dev_1.21.1ubuntu2.6_all.deb ...
Unpacking dpkg-dev (1.21.1ubuntu2.6) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../079-build-essential_12.9ubuntu3_amd64.deb ...
Unpacking build-essential (12.9ubuntu3) ...
Selecting previously unselected package libassuan0:amd64.
Preparing to unpack .../080-libassuan0_2.5.5-1build1_amd64.deb ...
Unpacking libassuan0:amd64 (2.5.5-1build1) ...
Selecting previously unselected package gpgconf.
Preparing to unpack .../081-gpgconf_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gpgconf (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package libksba8:amd64.
Preparing to unpack .../082-libksba8_1.6.0-2ubuntu0.2_amd64.deb ...
Unpacking libksba8:amd64 (1.6.0-2ubuntu0.2) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../083-libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../084-libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
Selecting previously unselected package libldap-2.5-0:amd64.
Preparing to unpack .../085-libldap-2.5-0_2.5.19+dfsg-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libldap-2.5-0:amd64 (2.5.19+dfsg-0ubuntu0.22.04.1) ...
Selecting previously unselected package libnpth0:amd64.
Preparing to unpack .../086-libnpth0_1.6-3build2_amd64.deb ...
Unpacking libnpth0:amd64 (1.6-3build2) ...
Selecting previously unselected package dirmngr.
Preparing to unpack .../087-dirmngr_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking dirmngr (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../088-libfakeroot_1.28-1ubuntu1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.28-1ubuntu1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../089-fakeroot_1.28-1ubuntu1_amd64.deb ...
Unpacking fakeroot (1.28-1ubuntu1) ...
Selecting previously unselected package libaom3:amd64.
Preparing to unpack .../090-libaom3_3.3.0-1ubuntu0.1_amd64.deb ...
Unpacking libaom3:amd64 (3.3.0-1ubuntu0.1) ...
Selecting previously unselected package libva2:amd64.
Preparing to unpack .../091-libva2_2.14.0-1_amd64.deb ...
Unpacking libva2:amd64 (2.14.0-1) ...
Selecting previously unselected package libmfx1:amd64.
Preparing to unpack .../092-libmfx1_22.3.0-1_amd64.deb ...
Unpacking libmfx1:amd64 (22.3.0-1) ...
Selecting previously unselected package libva-drm2:amd64.
Preparing to unpack .../093-libva-drm2_2.14.0-1_amd64.deb ...
Unpacking libva-drm2:amd64 (2.14.0-1) ...
Selecting previously unselected package libxfixes3:amd64.
Preparing to unpack .../094-libxfixes3_1%3a6.0.0-1_amd64.deb ...
Unpacking libxfixes3:amd64 (1:6.0.0-1) ...
Selecting previously unselected package libva-x11-2:amd64.
Preparing to unpack .../095-libva-x11-2_2.14.0-1_amd64.deb ...
Unpacking libva-x11-2:amd64 (2.14.0-1) ...
Selecting previously unselected package libvdpau1:amd64.
Preparing to unpack .../096-libvdpau1_1.4-3build2_amd64.deb ...
Unpacking libvdpau1:amd64 (1.4-3build2) ...
Selecting previously unselected package ocl-icd-libopencl1:amd64.
Preparing to unpack .../097-ocl-icd-libopencl1_2.2.14-3_amd64.deb ...
Unpacking ocl-icd-libopencl1:amd64 (2.2.14-3) ...
Selecting previously unselected package libavutil56:amd64.
Preparing to unpack .../098-libavutil56_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../099-libbrotli1_1.0.9-2build6_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.9-2build6) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../100-libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb ...
Unpacking libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../101-fonts-dejavu-core_2.37-2build1_all.deb ...
Unpacking fonts-dejavu-core (2.37-2build1) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../102-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../103-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
Selecting previously unselected package libpixman-1-0:amd64.
Preparing to unpack .../104-libpixman-1-0_0.40.0-1ubuntu0.22.04.1_amd64.deb ...
Unpacking libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ...
Selecting previously unselected package libxcb-render0:amd64.
Preparing to unpack .../105-libxcb-render0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-render0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../106-libxcb-shm0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../107-libxrender1_1%3a0.9.10-1build4_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1build4) ...
Selecting previously unselected package libcairo2:amd64.
Preparing to unpack .../108-libcairo2_1.16.0-5ubuntu2_amd64.deb ...
Unpacking libcairo2:amd64 (1.16.0-5ubuntu2) ...
Selecting previously unselected package libcodec2-1.0:amd64.
Preparing to unpack .../109-libcodec2-1.0_1.0.1-3_amd64.deb ...
Unpacking libcodec2-1.0:amd64 (1.0.1-3) ...
Selecting previously unselected package libdav1d5:amd64.
Preparing to unpack .../110-libdav1d5_0.9.2-1_amd64.deb ...
Unpacking libdav1d5:amd64 (0.9.2-1) ...
Selecting previously unselected package libgsm1:amd64.
Preparing to unpack .../111-libgsm1_1.0.19-1_amd64.deb ...
Unpacking libgsm1:amd64 (1.0.19-1) ...
Selecting previously unselected package libmp3lame0:amd64.
Preparing to unpack .../112-libmp3lame0_3.100-3build2_amd64.deb ...
Unpacking libmp3lame0:amd64 (3.100-3build2) ...
Selecting previously unselected package libopenjp2-7:amd64.
Preparing to unpack .../113-libopenjp2-7_2.4.0-6ubuntu0.4_amd64.deb ...
Unpacking libopenjp2-7:amd64 (2.4.0-6ubuntu0.4) ...
Selecting previously unselected package libopus0:amd64.
Preparing to unpack .../114-libopus0_1.3.1-0.1build2_amd64.deb ...
Unpacking libopus0:amd64 (1.3.1-0.1build2) ...
Selecting previously unselected package libcairo-gobject2:amd64.
Preparing to unpack .../115-libcairo-gobject2_1.16.0-5ubuntu2_amd64.deb ...
Unpacking libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ...
Selecting previously unselected package libgdk-pixbuf2.0-common.
Preparing to unpack .../116-libgdk-pixbuf2.0-common_2.42.8+dfsg-1ubuntu0.4_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.4) ...
Selecting previously unselected package libdeflate0:amd64.
Preparing to unpack .../117-libdeflate0_1.10-2_amd64.deb ...
Unpacking libdeflate0:amd64 (1.10-2) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../118-libjbig0_2.1-3.1ubuntu0.22.04.1_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
Selecting previously unselected package libwebp7:amd64.
Preparing to unpack .../119-libwebp7_1.2.2-2ubuntu0.22.04.2_amd64.deb ...
Unpacking libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../120-libtiff5_4.3.0-6ubuntu0.12_amd64.deb ...
Unpacking libtiff5:amd64 (4.3.0-6ubuntu0.12) ...
Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64.
Preparing to unpack .../121-libgdk-pixbuf-2.0-0_2.42.8+dfsg-1ubuntu0.4_amd64.deb ...
Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.4) ...
Selecting previously unselected package fontconfig.
Preparing to unpack .../122-fontconfig_2.13.1-4.2ubuntu5_amd64.deb ...
Unpacking fontconfig (2.13.1-4.2ubuntu5) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../123-libgraphite2-3_1.3.14-1build2_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.14-1build2) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../124-libharfbuzz0b_2.7.4-1ubuntu3.2_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ...
Selecting previously unselected package libthai-data.
Preparing to unpack .../125-libthai-data_0.1.29-1build1_all.deb ...
Unpacking libthai-data (0.1.29-1build1) ...
Selecting previously unselected package libdatrie1:amd64.
Preparing to unpack .../126-libdatrie1_0.2.13-2_amd64.deb ...
Unpacking libdatrie1:amd64 (0.2.13-2) ...
Selecting previously unselected package libthai0:amd64.
Preparing to unpack .../127-libthai0_0.1.29-1build1_amd64.deb ...
Unpacking libthai0:amd64 (0.1.29-1build1) ...
Selecting previously unselected package libpango-1.0-0:amd64.
Preparing to unpack .../128-libpango-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ...
Unpacking libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
Selecting previously unselected package libpangoft2-1.0-0:amd64.
Preparing to unpack .../129-libpangoft2-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ...
Unpacking libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
Selecting previously unselected package libpangocairo-1.0-0:amd64.
Preparing to unpack .../130-libpangocairo-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ...
Unpacking libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
Selecting previously unselected package librsvg2-2:amd64.
Preparing to unpack .../131-librsvg2-2_2.52.5+dfsg-3ubuntu0.2_amd64.deb ...
Unpacking librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
Selecting previously unselected package libshine3:amd64.
Preparing to unpack .../132-libshine3_3.1.1-2_amd64.deb ...
Unpacking libshine3:amd64 (3.1.1-2) ...
Selecting previously unselected package libsnappy1v5:amd64.
Preparing to unpack .../133-libsnappy1v5_1.1.8-1build3_amd64.deb ...
Unpacking libsnappy1v5:amd64 (1.1.8-1build3) ...
Selecting previously unselected package libspeex1:amd64.
Preparing to unpack .../134-libspeex1_1.2~rc1.2-1.1ubuntu3_amd64.deb ...
Unpacking libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ...
Selecting previously unselected package libsoxr0:amd64.
Preparing to unpack .../135-libsoxr0_0.1.3-4build2_amd64.deb ...
Unpacking libsoxr0:amd64 (0.1.3-4build2) ...
Selecting previously unselected package libswresample3:amd64.
Preparing to unpack .../136-libswresample3_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package libogg0:amd64.
Preparing to unpack .../137-libogg0_1.3.5-0ubuntu3_amd64.deb ...
Unpacking libogg0:amd64 (1.3.5-0ubuntu3) ...
Selecting previously unselected package libtheora0:amd64.
Preparing to unpack .../138-libtheora0_1.1.1+dfsg.1-15ubuntu4_amd64.deb ...
Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ...
Selecting previously unselected package libtwolame0:amd64.
Preparing to unpack .../139-libtwolame0_0.4.0-2build2_amd64.deb ...
Unpacking libtwolame0:amd64 (0.4.0-2build2) ...
Selecting previously unselected package libvorbis0a:amd64.
Preparing to unpack .../140-libvorbis0a_1.3.7-1build2_amd64.deb ...
Unpacking libvorbis0a:amd64 (1.3.7-1build2) ...
Selecting previously unselected package libvorbisenc2:amd64.
Preparing to unpack .../141-libvorbisenc2_1.3.7-1build2_amd64.deb ...
Unpacking libvorbisenc2:amd64 (1.3.7-1build2) ...
Selecting previously unselected package libvpx7:amd64.
Preparing to unpack .../142-libvpx7_1.11.0-2ubuntu2.4_amd64.deb ...
Unpacking libvpx7:amd64 (1.11.0-2ubuntu2.4) ...
Selecting previously unselected package libwebpmux3:amd64.
Preparing to unpack .../143-libwebpmux3_1.2.2-2ubuntu0.22.04.2_amd64.deb ...
Unpacking libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ...
Selecting previously unselected package libx264-163:amd64.
Preparing to unpack .../144-libx264-163_2%3a0.163.3060+git5db6aa6-2build1_amd64.deb ...
Unpacking libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ...
Selecting previously unselected package libx265-199:amd64.
Preparing to unpack .../145-libx265-199_3.5-2_amd64.deb ...
Unpacking libx265-199:amd64 (3.5-2) ...
Selecting previously unselected package libxvidcore4:amd64.
Preparing to unpack .../146-libxvidcore4_2%3a1.3.7-1_amd64.deb ...
Unpacking libxvidcore4:amd64 (2:1.3.7-1) ...
Selecting previously unselected package libzvbi-common.
Preparing to unpack .../147-libzvbi-common_0.2.35-19_all.deb ...
Unpacking libzvbi-common (0.2.35-19) ...
Selecting previously unselected package libzvbi0:amd64.
Preparing to unpack .../148-libzvbi0_0.2.35-19_amd64.deb ...
Unpacking libzvbi0:amd64 (0.2.35-19) ...
Selecting previously unselected package libavcodec58:amd64.
Preparing to unpack .../149-libavcodec58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package libraw1394-11:amd64.
Preparing to unpack .../150-libraw1394-11_2.1.2-2build2_amd64.deb ...
Unpacking libraw1394-11:amd64 (2.1.2-2build2) ...
Selecting previously unselected package libavc1394-0:amd64.
Preparing to unpack .../151-libavc1394-0_0.5.4-5build2_amd64.deb ...
Unpacking libavc1394-0:amd64 (0.5.4-5build2) ...
Selecting previously unselected package libass9:amd64.
Preparing to unpack .../152-libass9_1%3a0.15.2-1_amd64.deb ...
Unpacking libass9:amd64 (1:0.15.2-1) ...
Selecting previously unselected package libudfread0:amd64.
Preparing to unpack .../153-libudfread0_1.1.2-1_amd64.deb ...
Unpacking libudfread0:amd64 (1.1.2-1) ...
Selecting previously unselected package libbluray2:amd64.
Preparing to unpack .../154-libbluray2_1%3a1.3.1-1_amd64.deb ...
Unpacking libbluray2:amd64 (1:1.3.1-1) ...
Selecting previously unselected package libchromaprint1:amd64.
Preparing to unpack .../155-libchromaprint1_1.5.1-2_amd64.deb ...
Unpacking libchromaprint1:amd64 (1.5.1-2) ...
Selecting previously unselected package libgme0:amd64.
Preparing to unpack .../156-libgme0_0.6.3-2_amd64.deb ...
Unpacking libgme0:amd64 (0.6.3-2) ...
Selecting previously unselected package libmpg123-0:amd64.
Preparing to unpack .../157-libmpg123-0_1.29.3-1ubuntu0.1_amd64.deb ...
Unpacking libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ...
Selecting previously unselected package libvorbisfile3:amd64.
Preparing to unpack .../158-libvorbisfile3_1.3.7-1build2_amd64.deb ...
Unpacking libvorbisfile3:amd64 (1.3.7-1build2) ...
Selecting previously unselected package libopenmpt0:amd64.
Preparing to unpack .../159-libopenmpt0_0.6.1-1_amd64.deb ...
Unpacking libopenmpt0:amd64 (0.6.1-1) ...
Selecting previously unselected package librabbitmq4:amd64.
Preparing to unpack .../160-librabbitmq4_0.10.0-1ubuntu2_amd64.deb ...
Unpacking librabbitmq4:amd64 (0.10.0-1ubuntu2) ...
Selecting previously unselected package libsrt1.4-gnutls:amd64.
Preparing to unpack .../161-libsrt1.4-gnutls_1.4.4-4_amd64.deb ...
Unpacking libsrt1.4-gnutls:amd64 (1.4.4-4) ...
Selecting previously unselected package libssh-gcrypt-4:amd64.
Preparing to unpack .../162-libssh-gcrypt-4_0.9.6-2ubuntu0.22.04.4_amd64.deb ...
Unpacking libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.4) ...
Selecting previously unselected package libnorm1:amd64.
Preparing to unpack .../163-libnorm1_1.5.9+dfsg-2_amd64.deb ...
Unpacking libnorm1:amd64 (1.5.9+dfsg-2) ...
Selecting previously unselected package libpgm-5.3-0:amd64.
Preparing to unpack .../164-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ...
Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ...
Selecting previously unselected package libsodium23:amd64.
Preparing to unpack .../165-libsodium23_1.0.18-1build2_amd64.deb ...
Unpacking libsodium23:amd64 (1.0.18-1build2) ...
Selecting previously unselected package libzmq5:amd64.
Preparing to unpack .../166-libzmq5_4.3.4-2_amd64.deb ...
Unpacking libzmq5:amd64 (4.3.4-2) ...
Selecting previously unselected package libavformat58:amd64.
Preparing to unpack .../167-libavformat58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package libbs2b0:amd64.
Preparing to unpack .../168-libbs2b0_3.1.0+dfsg-2.2build1_amd64.deb ...
Unpacking libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ...
Selecting previously unselected package libflite1:amd64.
Preparing to unpack .../169-libflite1_2.2-3_amd64.deb ...
Unpacking libflite1:amd64 (2.2-3) ...
Selecting previously unselected package libserd-0-0:amd64.
Preparing to unpack .../170-libserd-0-0_0.30.10-2_amd64.deb ...
Unpacking libserd-0-0:amd64 (0.30.10-2) ...
Selecting previously unselected package libsord-0-0:amd64.
Preparing to unpack .../171-libsord-0-0_0.16.8-2_amd64.deb ...
Unpacking libsord-0-0:amd64 (0.16.8-2) ...
Selecting previously unselected package libsratom-0-0:amd64.
Preparing to unpack .../172-libsratom-0-0_0.6.8-1_amd64.deb ...
Unpacking libsratom-0-0:amd64 (0.6.8-1) ...
Selecting previously unselected package liblilv-0-0:amd64.
Preparing to unpack .../173-liblilv-0-0_0.24.12-2_amd64.deb ...
Unpacking liblilv-0-0:amd64 (0.24.12-2) ...
Selecting previously unselected package libmysofa1:amd64.
Preparing to unpack .../174-libmysofa1_1.2.1~dfsg0-1_amd64.deb ...
Unpacking libmysofa1:amd64 (1.2.1~dfsg0-1) ...
Selecting previously unselected package libblas3:amd64.
Preparing to unpack .../175-libblas3_3.10.0-2ubuntu1_amd64.deb ...
Unpacking libblas3:amd64 (3.10.0-2ubuntu1) ...
Selecting previously unselected package libgfortran5:amd64.
Preparing to unpack .../176-libgfortran5_12.3.0-1ubuntu1~22.04.2_amd64.deb ...
Unpacking libgfortran5:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Selecting previously unselected package liblapack3:amd64.
Preparing to unpack .../177-liblapack3_3.10.0-2ubuntu1_amd64.deb ...
Unpacking liblapack3:amd64 (3.10.0-2ubuntu1) ...
Selecting previously unselected package libasyncns0:amd64.
Preparing to unpack .../178-libasyncns0_0.8-6build2_amd64.deb ...
Unpacking libasyncns0:amd64 (0.8-6build2) ...
Selecting previously unselected package libflac8:amd64.
Preparing to unpack .../179-libflac8_1.3.3-2ubuntu0.2_amd64.deb ...
Unpacking libflac8:amd64 (1.3.3-2ubuntu0.2) ...
Selecting previously unselected package libsndfile1:amd64.
Preparing to unpack .../180-libsndfile1_1.0.31-2ubuntu0.2_amd64.deb ...
Unpacking libsndfile1:amd64 (1.0.31-2ubuntu0.2) ...
Selecting previously unselected package libx11-xcb1:amd64.
Preparing to unpack .../181-libx11-xcb1_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
Unpacking libx11-xcb1:amd64 (2:1.7.5-1ubuntu0.3) ...
Selecting previously unselected package libpulse0:amd64.
Preparing to unpack .../182-libpulse0_1%3a15.99.1+dfsg1-1ubuntu2.2_amd64.deb ...
Unpacking libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ...
Selecting previously unselected package libsphinxbase3:amd64.
Preparing to unpack .../183-libsphinxbase3_0.8+5prealpha+1-13build1_amd64.deb ...
Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ...
Selecting previously unselected package libpocketsphinx3:amd64.
Preparing to unpack .../184-libpocketsphinx3_0.8.0+real5prealpha+1-14ubuntu1_amd64.deb ...
Unpacking libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ...
Selecting previously unselected package libpostproc55:amd64.
Preparing to unpack .../185-libpostproc55_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package libsamplerate0:amd64.
Preparing to unpack .../186-libsamplerate0_0.2.2-1build1_amd64.deb ...
Unpacking libsamplerate0:amd64 (0.2.2-1build1) ...
Selecting previously unselected package librubberband2:amd64.
Preparing to unpack .../187-librubberband2_2.0.0-2_amd64.deb ...
Unpacking librubberband2:amd64 (2.0.0-2) ...
Selecting previously unselected package libswscale5:amd64.
Preparing to unpack .../188-libswscale5_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package libvidstab1.1:amd64.
Preparing to unpack .../189-libvidstab1.1_1.1.0-2_amd64.deb ...
Unpacking libvidstab1.1:amd64 (1.1.0-2) ...
Selecting previously unselected package libzimg2:amd64.
Preparing to unpack .../190-libzimg2_3.0.3+ds1-1_amd64.deb ...
Unpacking libzimg2:amd64 (3.0.3+ds1-1) ...
Selecting previously unselected package libavfilter7:amd64.
Preparing to unpack .../191-libavfilter7_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package libcaca0:amd64.
Preparing to unpack .../192-libcaca0_0.99.beta19-2.2ubuntu4_amd64.deb ...
Unpacking libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ...
Selecting previously unselected package libcdio19:amd64.
Preparing to unpack .../193-libcdio19_2.1.0-3ubuntu0.2_amd64.deb ...
Unpacking libcdio19:amd64 (2.1.0-3ubuntu0.2) ...
Selecting previously unselected package libcdio-cdda2:amd64.
Preparing to unpack .../194-libcdio-cdda2_10.2+2.0.0-1build3_amd64.deb ...
Unpacking libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ...
Selecting previously unselected package libcdio-paranoia2:amd64.
Preparing to unpack .../195-libcdio-paranoia2_10.2+2.0.0-1build3_amd64.deb ...
Unpacking libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ...
Selecting previously unselected package libdc1394-25:amd64.
Preparing to unpack .../196-libdc1394-25_2.2.6-4_amd64.deb ...
Unpacking libdc1394-25:amd64 (2.2.6-4) ...
Selecting previously unselected package libglvnd0:amd64.
Preparing to unpack .../197-libglvnd0_1.4.0-1_amd64.deb ...
Unpacking libglvnd0:amd64 (1.4.0-1) ...
Selecting previously unselected package libglapi-mesa:amd64.
Preparing to unpack .../198-libglapi-mesa_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking libglapi-mesa:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package libxcb-dri2-0:amd64.
Preparing to unpack .../199-libxcb-dri2-0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-dri2-0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../200-libxcb-dri3-0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-glx0:amd64.
Preparing to unpack .../201-libxcb-glx0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-glx0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../202-libxcb-present0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-randr0:amd64.
Preparing to unpack .../203-libxcb-randr0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-randr0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../204-libxcb-sync1_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Preparing to unpack .../205-libxcb-xfixes0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-xfixes0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../206-libxshmfence1_1.3-1build4_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3-1build4) ...
Selecting previously unselected package libxxf86vm1:amd64.
Preparing to unpack .../207-libxxf86vm1_1%3a1.1.4-1build3_amd64.deb ...
Unpacking libxxf86vm1:amd64 (1:1.1.4-1build3) ...
Selecting previously unselected package libdrm-amdgpu1:amd64.
Preparing to unpack .../208-libdrm-amdgpu1_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
Unpacking libdrm-amdgpu1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../209-libpciaccess0_0.16-3_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.16-3) ...
Selecting previously unselected package libdrm-intel1:amd64.
Preparing to unpack .../210-libdrm-intel1_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
Unpacking libdrm-intel1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Selecting previously unselected package libdrm-nouveau2:amd64.
Preparing to unpack .../211-libdrm-nouveau2_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
Unpacking libdrm-nouveau2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Selecting previously unselected package libdrm-radeon1:amd64.
Preparing to unpack .../212-libdrm-radeon1_2.4.113-2~ubuntu0.22.04.1_amd64.deb ...
Unpacking libdrm-radeon1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Selecting previously unselected package libllvm15:amd64.
Preparing to unpack .../213-libllvm15_1%3a15.0.7-0ubuntu0.22.04.3_amd64.deb ...
Unpacking libllvm15:amd64 (1:15.0.7-0ubuntu0.22.04.3) ...
Selecting previously unselected package libsensors-config.
Preparing to unpack .../214-libsensors-config_1%3a3.6.0-7ubuntu1_all.deb ...
Unpacking libsensors-config (1:3.6.0-7ubuntu1) ...
Selecting previously unselected package libsensors5:amd64.
Preparing to unpack .../215-libsensors5_1%3a3.6.0-7ubuntu1_amd64.deb ...
Unpacking libsensors5:amd64 (1:3.6.0-7ubuntu1) ...
Selecting previously unselected package libgl1-mesa-dri:amd64.
Preparing to unpack .../216-libgl1-mesa-dri_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking libgl1-mesa-dri:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package libglx-mesa0:amd64.
Preparing to unpack .../217-libglx-mesa0_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking libglx-mesa0:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package libglx0:amd64.
Preparing to unpack .../218-libglx0_1.4.0-1_amd64.deb ...
Unpacking libglx0:amd64 (1.4.0-1) ...
Selecting previously unselected package libgl1:amd64.
Preparing to unpack .../219-libgl1_1.4.0-1_amd64.deb ...
Unpacking libgl1:amd64 (1.4.0-1) ...
Selecting previously unselected package libiec61883-0:amd64.
Preparing to unpack .../220-libiec61883-0_1.2.0-4build3_amd64.deb ...
Unpacking libiec61883-0:amd64 (1.2.0-4build3) ...
Selecting previously unselected package libjack-jackd2-0:amd64.
Preparing to unpack .../221-libjack-jackd2-0_1.9.20~dfsg-1_amd64.deb ...
Unpacking libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ...
Selecting previously unselected package libopenal-data.
Preparing to unpack .../222-libopenal-data_1%3a1.19.1-2build3_all.deb ...
Unpacking libopenal-data (1:1.19.1-2build3) ...
Selecting previously unselected package libsndio7.0:amd64.
Preparing to unpack .../223-libsndio7.0_1.8.1-1.1_amd64.deb ...
Unpacking libsndio7.0:amd64 (1.8.1-1.1) ...
Selecting previously unselected package libopenal1:amd64.
Preparing to unpack .../224-libopenal1_1%3a1.19.1-2build3_amd64.deb ...
Unpacking libopenal1:amd64 (1:1.19.1-2build3) ...
Selecting previously unselected package libwayland-client0:amd64.
Preparing to unpack .../225-libwayland-client0_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package libdecor-0-0:amd64.
Preparing to unpack .../226-libdecor-0-0_0.1.0-3build1_amd64.deb ...
Unpacking libdecor-0-0:amd64 (0.1.0-3build1) ...
Selecting previously unselected package libwayland-server0:amd64.
Preparing to unpack .../227-libwayland-server0_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package libgbm1:amd64.
Preparing to unpack .../228-libgbm1_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package libwayland-cursor0:amd64.
Preparing to unpack .../229-libwayland-cursor0_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package libwayland-egl1:amd64.
Preparing to unpack .../230-libwayland-egl1_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package libxcursor1:amd64.
Preparing to unpack .../231-libxcursor1_1%3a1.2.0-2build4_amd64.deb ...
Unpacking libxcursor1:amd64 (1:1.2.0-2build4) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../232-libxi6_2%3a1.8-1build1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.8-1build1) ...
Selecting previously unselected package libxinerama1:amd64.
Preparing to unpack .../233-libxinerama1_2%3a1.1.4-3_amd64.deb ...
Unpacking libxinerama1:amd64 (2:1.1.4-3) ...
Selecting previously unselected package libxkbcommon0:amd64.
Preparing to unpack .../234-libxkbcommon0_1.4.0-1_amd64.deb ...
Unpacking libxkbcommon0:amd64 (1.4.0-1) ...
Selecting previously unselected package libxrandr2:amd64.
Preparing to unpack .../235-libxrandr2_2%3a1.5.2-1build1_amd64.deb ...
Unpacking libxrandr2:amd64 (2:1.5.2-1build1) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../236-x11-common_1%3a7.7+23ubuntu2_all.deb ...
Unpacking x11-common (1:7.7+23ubuntu2) ...
Selecting previously unselected package libxss1:amd64.
Preparing to unpack .../237-libxss1_1%3a1.2.3-1build2_amd64.deb ...
Unpacking libxss1:amd64 (1:1.2.3-1build2) ...
Selecting previously unselected package libsdl2-2.0-0:amd64.
Preparing to unpack .../238-libsdl2-2.0-0_2.0.20+dfsg-2ubuntu1.22.04.1_amd64.deb ...
Unpacking libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ...
Selecting previously unselected package libxcb-shape0:amd64.
Preparing to unpack .../239-libxcb-shape0_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxv1:amd64.
Preparing to unpack .../240-libxv1_2%3a1.0.11-1build2_amd64.deb ...
Unpacking libxv1:amd64 (2:1.0.11-1build2) ...
Selecting previously unselected package libavdevice58:amd64.
Preparing to unpack .../241-libavdevice58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package ffmpeg.
Preparing to unpack .../242-ffmpeg_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
Unpacking ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../243-librtmp1_2.4+20151223.gitfa8646d.1-2build4_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2build4) ...
Selecting previously unselected package libssh-4:amd64.
Preparing to unpack .../244-libssh-4_0.9.6-2ubuntu0.22.04.4_amd64.deb ...
Unpacking libssh-4:amd64 (0.9.6-2ubuntu0.22.04.4) ...
Selecting previously unselected package libcurl3-gnutls:amd64.
Preparing to unpack .../245-libcurl3-gnutls_7.81.0-1ubuntu1.21_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.21) ...
Selecting previously unselected package liberror-perl.
Preparing to unpack .../246-liberror-perl_0.17029-1_all.deb ...
Unpacking liberror-perl (0.17029-1) ...
Selecting previously unselected package git-man.
Preparing to unpack .../247-git-man_1%3a2.34.1-1ubuntu1.15_all.deb ...
Unpacking git-man (1:2.34.1-1ubuntu1.15) ...
Selecting previously unselected package git.
Preparing to unpack .../248-git_1%3a2.34.1-1ubuntu1.15_amd64.deb ...
Unpacking git (1:2.34.1-1ubuntu1.15) ...
Selecting previously unselected package gnupg-l10n.
Preparing to unpack .../249-gnupg-l10n_2.2.27-3ubuntu2.4_all.deb ...
Unpacking gnupg-l10n (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package gnupg-utils.
Preparing to unpack .../250-gnupg-utils_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gnupg-utils (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package gpg.
Preparing to unpack .../251-gpg_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gpg (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package pinentry-curses.
Preparing to unpack .../252-pinentry-curses_1.1.1-1build2_amd64.deb ...
Unpacking pinentry-curses (1.1.1-1build2) ...
Selecting previously unselected package gpg-agent.
Preparing to unpack .../253-gpg-agent_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gpg-agent (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package gpg-wks-client.
Preparing to unpack .../254-gpg-wks-client_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gpg-wks-client (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package gpg-wks-server.
Preparing to unpack .../255-gpg-wks-server_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gpg-wks-server (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package gpgsm.
Preparing to unpack .../256-gpgsm_2.2.27-3ubuntu2.4_amd64.deb ...
Unpacking gpgsm (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package gnupg.
Preparing to unpack .../257-gnupg_2.2.27-3ubuntu2.4_all.deb ...
Unpacking gnupg (2.2.27-3ubuntu2.4) ...
Selecting previously unselected package libigdgmm12:amd64.
Preparing to unpack .../258-libigdgmm12_22.1.2+ds1-1_amd64.deb ...
Unpacking libigdgmm12:amd64 (22.1.2+ds1-1) ...
Selecting previously unselected package intel-media-va-driver:amd64.
Preparing to unpack .../259-intel-media-va-driver_22.3.1+dfsg1-1ubuntu2_amd64.deb ...
Unpacking intel-media-va-driver:amd64 (22.3.1+dfsg1-1ubuntu2) ...
Selecting previously unselected package libonig5:amd64.
Preparing to unpack .../260-libonig5_6.9.7.1-2build1_amd64.deb ...
Unpacking libonig5:amd64 (6.9.7.1-2build1) ...
Selecting previously unselected package libjq1:amd64.
Preparing to unpack .../261-libjq1_1.6-2.1ubuntu3.1_amd64.deb ...
Unpacking libjq1:amd64 (1.6-2.1ubuntu3.1) ...
Selecting previously unselected package jq.
Preparing to unpack .../262-jq_1.6-2.1ubuntu3.1_amd64.deb ...
Unpacking jq (1.6-2.1ubuntu3.1) ...
Selecting previously unselected package libaacs0:amd64.
Preparing to unpack .../263-libaacs0_0.11.1-1_amd64.deb ...
Unpacking libaacs0:amd64 (0.11.1-1) ...
Selecting previously unselected package libalgorithm-diff-perl.
Preparing to unpack .../264-libalgorithm-diff-perl_1.201-1_all.deb ...
Unpacking libalgorithm-diff-perl (1.201-1) ...
Selecting previously unselected package libalgorithm-diff-xs-perl.
Preparing to unpack .../265-libalgorithm-diff-xs-perl_0.04-6build3_amd64.deb ...
Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
Selecting previously unselected package libalgorithm-merge-perl.
Preparing to unpack .../266-libalgorithm-merge-perl_0.08-3_all.deb ...
Unpacking libalgorithm-merge-perl (0.08-3) ...
Selecting previously unselected package libbdplus0:amd64.
Preparing to unpack .../267-libbdplus0_0.2.0-1_amd64.deb ...
Unpacking libbdplus0:amd64 (0.2.0-1) ...
Selecting previously unselected package libbrotli-dev:amd64.
Preparing to unpack .../268-libbrotli-dev_1.0.9-2build6_amd64.deb ...
Unpacking libbrotli-dev:amd64 (1.0.9-2build6) ...
Selecting previously unselected package liblzo2-2:amd64.
Preparing to unpack .../269-liblzo2-2_2.10-2build3_amd64.deb ...
Unpacking liblzo2-2:amd64 (2.10-2build3) ...
Selecting previously unselected package libcairo-script-interpreter2:amd64.
Preparing to unpack .../270-libcairo-script-interpreter2_1.16.0-5ubuntu2_amd64.deb ...
Unpacking libcairo-script-interpreter2:amd64 (1.16.0-5ubuntu2) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../271-libexpat1-dev_2.4.7-1ubuntu0.6_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.4.7-1ubuntu0.6) ...
Selecting previously unselected package libfreetype-dev:amd64.
Preparing to unpack .../272-libfreetype-dev_2.11.1+dfsg-1ubuntu0.3_amd64.deb ...
Unpacking libfreetype-dev:amd64 (2.11.1+dfsg-1ubuntu0.3) ...
Selecting previously unselected package libfreetype6-dev:amd64.
Preparing to unpack .../273-libfreetype6-dev_2.11.1+dfsg-1ubuntu0.3_amd64.deb ...
Unpacking libfreetype6-dev:amd64 (2.11.1+dfsg-1ubuntu0.3) ...
Selecting previously unselected package uuid-dev:amd64.
Preparing to unpack .../274-uuid-dev_2.37.2-4ubuntu3.4_amd64.deb ...
Unpacking uuid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../275-pkg-config_0.29.2-1ubuntu3_amd64.deb ...
Unpacking pkg-config (0.29.2-1ubuntu3) ...
Selecting previously unselected package libfontconfig-dev:amd64.
Preparing to unpack .../276-libfontconfig-dev_2.13.1-4.2ubuntu5_amd64.deb ...
Unpacking libfontconfig-dev:amd64 (2.13.1-4.2ubuntu5) ...
Selecting previously unselected package libfontconfig1-dev:amd64.
Preparing to unpack .../277-libfontconfig1-dev_2.13.1-4.2ubuntu5_amd64.deb ...
Unpacking libfontconfig1-dev:amd64 (2.13.1-4.2ubuntu5) ...
Selecting previously unselected package xorg-sgml-doctools.
Preparing to unpack .../278-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 .../279-x11proto-dev_2021.5-1_all.deb ...
Unpacking x11proto-dev (2021.5-1) ...
Selecting previously unselected package libxau-dev:amd64.
Preparing to unpack .../280-libxau-dev_1%3a1.0.9-1build5_amd64.deb ...
Unpacking libxau-dev:amd64 (1:1.0.9-1build5) ...
Selecting previously unselected package libxdmcp-dev:amd64.
Preparing to unpack .../281-libxdmcp-dev_1%3a1.1.3-0ubuntu5_amd64.deb ...
Unpacking libxdmcp-dev:amd64 (1:1.1.3-0ubuntu5) ...
Selecting previously unselected package xtrans-dev.
Preparing to unpack .../282-xtrans-dev_1.4.0-1_all.deb ...
Unpacking xtrans-dev (1.4.0-1) ...
Selecting previously unselected package libpthread-stubs0-dev:amd64.
Preparing to unpack .../283-libpthread-stubs0-dev_0.4-1build2_amd64.deb ...
Unpacking libpthread-stubs0-dev:amd64 (0.4-1build2) ...
Selecting previously unselected package libxcb1-dev:amd64.
Preparing to unpack .../284-libxcb1-dev_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb1-dev:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libx11-dev:amd64.
Preparing to unpack .../285-libx11-dev_2%3a1.7.5-1ubuntu0.3_amd64.deb ...
Unpacking libx11-dev:amd64 (2:1.7.5-1ubuntu0.3) ...
Selecting previously unselected package libxrender-dev:amd64.
Preparing to unpack .../286-libxrender-dev_1%3a0.9.10-1build4_amd64.deb ...
Unpacking libxrender-dev:amd64 (1:0.9.10-1build4) ...
Selecting previously unselected package libxext-dev:amd64.
Preparing to unpack .../287-libxext-dev_2%3a1.3.4-1build1_amd64.deb ...
Unpacking libxext-dev:amd64 (2:1.3.4-1build1) ...
Selecting previously unselected package libice6:amd64.
Preparing to unpack .../288-libice6_2%3a1.0.10-1build2_amd64.deb ...
Unpacking libice6:amd64 (2:1.0.10-1build2) ...
Selecting previously unselected package libsm6:amd64.
Preparing to unpack .../289-libsm6_2%3a1.2.3-1build2_amd64.deb ...
Unpacking libsm6:amd64 (2:1.2.3-1build2) ...
Selecting previously unselected package libice-dev:amd64.
Preparing to unpack .../290-libice-dev_2%3a1.0.10-1build2_amd64.deb ...
Unpacking libice-dev:amd64 (2:1.0.10-1build2) ...
Selecting previously unselected package libsm-dev:amd64.
Preparing to unpack .../291-libsm-dev_2%3a1.2.3-1build2_amd64.deb ...
Unpacking libsm-dev:amd64 (2:1.2.3-1build2) ...
Selecting previously unselected package libpixman-1-dev:amd64.
Preparing to unpack .../292-libpixman-1-dev_0.40.0-1ubuntu0.22.04.1_amd64.deb ...
Unpacking libpixman-1-dev:amd64 (0.40.0-1ubuntu0.22.04.1) ...
Selecting previously unselected package libxcb-render0-dev:amd64.
Preparing to unpack .../293-libxcb-render0-dev_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-render0-dev:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libxcb-shm0-dev:amd64.
Preparing to unpack .../294-libxcb-shm0-dev_1.14-3ubuntu3_amd64.deb ...
Unpacking libxcb-shm0-dev:amd64 (1.14-3ubuntu3) ...
Selecting previously unselected package libffi-dev:amd64.
Preparing to unpack .../295-libffi-dev_3.4.2-4_amd64.deb ...
Unpacking libffi-dev:amd64 (3.4.2-4) ...
Selecting previously unselected package libglib2.0-bin.
Preparing to unpack .../296-libglib2.0-bin_2.72.4-0ubuntu2.6_amd64.deb ...
Unpacking libglib2.0-bin (2.72.4-0ubuntu2.6) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../297-python3-lib2to3_3.10.8-1~22.04_all.deb ...
Unpacking python3-lib2to3 (3.10.8-1~22.04) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../298-python3-distutils_3.10.8-1~22.04_all.deb ...
Unpacking python3-distutils (3.10.8-1~22.04) ...
Selecting previously unselected package libglib2.0-dev-bin.
Preparing to unpack .../299-libglib2.0-dev-bin_2.72.4-0ubuntu2.6_amd64.deb ...
Unpacking libglib2.0-dev-bin (2.72.4-0ubuntu2.6) ...
Selecting previously unselected package libblkid-dev:amd64.
Preparing to unpack .../300-libblkid-dev_2.37.2-4ubuntu3.4_amd64.deb ...
Unpacking libblkid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Selecting previously unselected package libsepol-dev:amd64.
Preparing to unpack .../301-libsepol-dev_3.3-1build1_amd64.deb ...
Unpacking libsepol-dev:amd64 (3.3-1build1) ...
Selecting previously unselected package libpcre2-16-0:amd64.
Preparing to unpack .../302-libpcre2-16-0_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libpcre2-32-0:amd64.
Preparing to unpack .../303-libpcre2-32-0_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-32-0:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libpcre2-posix3:amd64.
Preparing to unpack .../304-libpcre2-posix3_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libpcre2-dev:amd64.
Preparing to unpack .../305-libpcre2-dev_10.39-3ubuntu0.1_amd64.deb ...
Unpacking libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
Selecting previously unselected package libselinux1-dev:amd64.
Preparing to unpack .../306-libselinux1-dev_3.3-1build2_amd64.deb ...
Unpacking libselinux1-dev:amd64 (3.3-1build2) ...
Selecting previously unselected package libmount-dev:amd64.
Preparing to unpack .../307-libmount-dev_2.37.2-4ubuntu3.4_amd64.deb ...
Unpacking libmount-dev:amd64 (2.37.2-4ubuntu3.4) ...
Selecting previously unselected package libpcre16-3:amd64.
Preparing to unpack .../308-libpcre16-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcre32-3:amd64.
Preparing to unpack .../309-libpcre32-3_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcrecpp0v5:amd64.
Preparing to unpack .../310-libpcrecpp0v5_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../311-libpcre3-dev_2%3a8.39-13ubuntu0.22.04.1_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Selecting previously unselected package libglib2.0-dev:amd64.
Preparing to unpack .../312-libglib2.0-dev_2.72.4-0ubuntu2.6_amd64.deb ...
Unpacking libglib2.0-dev:amd64 (2.72.4-0ubuntu2.6) ...
Selecting previously unselected package libcairo2-dev:amd64.
Preparing to unpack .../313-libcairo2-dev_1.16.0-5ubuntu2_amd64.deb ...
Unpacking libcairo2-dev:amd64 (1.16.0-5ubuntu2) ...
Selecting previously unselected package libdecor-0-plugin-1-cairo:amd64.
Preparing to unpack .../314-libdecor-0-plugin-1-cairo_0.1.0-3build1_amd64.deb ...
Unpacking libdecor-0-plugin-1-cairo:amd64 (0.1.0-3build1) ...
Selecting previously unselected package libegl-mesa0:amd64.
Preparing to unpack .../315-libegl-mesa0_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking libegl-mesa0:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package libegl1:amd64.
Preparing to unpack .../316-libegl1_1.4.0-1_amd64.deb ...
Unpacking libegl1:amd64 (1.4.0-1) ...
Selecting previously unselected package libglx-dev:amd64.
Preparing to unpack .../317-libglx-dev_1.4.0-1_amd64.deb ...
Unpacking libglx-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libgl-dev:amd64.
Preparing to unpack .../318-libgl-dev_1.4.0-1_amd64.deb ...
Unpacking libgl-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libegl-dev:amd64.
Preparing to unpack .../319-libegl-dev_1.4.0-1_amd64.deb ...
Unpacking libegl-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libglvnd-core-dev:amd64.
Preparing to unpack .../320-libglvnd-core-dev_1.4.0-1_amd64.deb ...
Unpacking libglvnd-core-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libgles1:amd64.
Preparing to unpack .../321-libgles1_1.4.0-1_amd64.deb ...
Unpacking libgles1:amd64 (1.4.0-1) ...
Selecting previously unselected package libgles2:amd64.
Preparing to unpack .../322-libgles2_1.4.0-1_amd64.deb ...
Unpacking libgles2:amd64 (1.4.0-1) ...
Selecting previously unselected package libgles-dev:amd64.
Preparing to unpack .../323-libgles-dev_1.4.0-1_amd64.deb ...
Unpacking libgles-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libopengl0:amd64.
Preparing to unpack .../324-libopengl0_1.4.0-1_amd64.deb ...
Unpacking libopengl0:amd64 (1.4.0-1) ...
Selecting previously unselected package libopengl-dev:amd64.
Preparing to unpack .../325-libopengl-dev_1.4.0-1_amd64.deb ...
Unpacking libopengl-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libglvnd-dev:amd64.
Preparing to unpack .../326-libglvnd-dev_1.4.0-1_amd64.deb ...
Unpacking libglvnd-dev:amd64 (1.4.0-1) ...
Selecting previously unselected package libegl1-mesa-dev:amd64.
Preparing to unpack .../327-libegl1-mesa-dev_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking libegl1-mesa-dev:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package libfile-fcntllock-perl.
Preparing to unpack .../328-libfile-fcntllock-perl_0.22-3build7_amd64.deb ...
Unpacking libfile-fcntllock-perl (0.22-3build7) ...
Selecting previously unselected package libgdk-pixbuf2.0-bin.
Preparing to unpack .../329-libgdk-pixbuf2.0-bin_2.42.8+dfsg-1ubuntu0.4_amd64.deb ...
Unpacking libgdk-pixbuf2.0-bin (2.42.8+dfsg-1ubuntu0.4) ...
Selecting previously unselected package libgl1-amber-dri:amd64.
Preparing to unpack .../330-libgl1-amber-dri_21.3.9-0ubuntu1~22.04.1_amd64.deb ...
Unpacking libgl1-amber-dri:amd64 (21.3.9-0ubuntu1~22.04.1) ...
Selecting previously unselected package libgles2-mesa-dev:amd64.
Preparing to unpack .../331-libgles2-mesa-dev_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking libgles2-mesa-dev:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package libglfw3:amd64.
Preparing to unpack .../332-libglfw3_3.3.6-1_amd64.deb ...
Unpacking libglfw3:amd64 (3.3.6-1) ...
Selecting previously unselected package libglfw3-dev:amd64.
Preparing to unpack .../333-libglfw3-dev_3.3.6-1_amd64.deb ...
Unpacking libglfw3-dev:amd64 (3.3.6-1) ...
Selecting previously unselected package libio-pty-perl.
Preparing to unpack .../334-libio-pty-perl_1%3a1.15-2build2_amd64.deb ...
Unpacking libio-pty-perl (1:1.15-2build2) ...
Selecting previously unselected package libipc-run-perl.
Preparing to unpack .../335-libipc-run-perl_20200505.0-1_all.deb ...
Unpacking libipc-run-perl (20200505.0-1) ...
Selecting previously unselected package libldap-common.
Preparing to unpack .../336-libldap-common_2.5.19+dfsg-0ubuntu0.22.04.1_all.deb ...
Unpacking libldap-common (2.5.19+dfsg-0ubuntu0.22.04.1) ...
Selecting previously unselected package librsvg2-common:amd64.
Preparing to unpack .../337-librsvg2-common_2.52.5+dfsg-3ubuntu0.2_amd64.deb ...
Unpacking librsvg2-common:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
Selecting previously unselected package libsasl2-modules:amd64.
Preparing to unpack .../338-libsasl2-modules_2.1.27+dfsg2-3ubuntu1.2_amd64.deb ...
Unpacking libsasl2-modules:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
Selecting previously unselected package libtime-duration-perl.
Preparing to unpack .../339-libtime-duration-perl_1.21-1_all.deb ...
Unpacking libtime-duration-perl (1.21-1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../340-libtimedate-perl_2.3300-2_all.deb ...
Unpacking libtimedate-perl (2.3300-2) ...
Selecting previously unselected package libvulkan1:amd64.
Preparing to unpack .../341-libvulkan1_1.3.204.1-2_amd64.deb ...
Unpacking libvulkan1:amd64 (1.3.204.1-2) ...
Selecting previously unselected package libvulkan-dev:amd64.
Preparing to unpack .../342-libvulkan-dev_1.3.204.1-2_amd64.deb ...
Unpacking libvulkan-dev:amd64 (1.3.204.1-2) ...
Selecting previously unselected package libxrandr-dev:amd64.
Preparing to unpack .../343-libxrandr-dev_2%3a1.5.2-1build1_amd64.deb ...
Unpacking libxrandr-dev:amd64 (2:1.5.2-1build1) ...
Selecting previously unselected package mesa-va-drivers:amd64.
Preparing to unpack .../344-mesa-va-drivers_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking mesa-va-drivers:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package mesa-vdpau-drivers:amd64.
Preparing to unpack .../345-mesa-vdpau-drivers_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking mesa-vdpau-drivers:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package mesa-vulkan-drivers:amd64.
Preparing to unpack .../346-mesa-vulkan-drivers_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ...
Unpacking mesa-vulkan-drivers:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Selecting previously unselected package moreutils.
Preparing to unpack .../347-moreutils_0.66-1_amd64.deb ...
Unpacking moreutils (0.66-1) ...
Selecting previously unselected package i965-va-driver:amd64.
Preparing to unpack .../348-i965-va-driver_2.4.1+dfsg1-1_amd64.deb ...
Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1) ...
Selecting previously unselected package va-driver-all:amd64.
Preparing to unpack .../349-va-driver-all_2.14.0-1_amd64.deb ...
Unpacking va-driver-all:amd64 (2.14.0-1) ...
Selecting previously unselected package vdpau-driver-all:amd64.
Preparing to unpack .../350-vdpau-driver-all_1.4-3build2_amd64.deb ...
Unpacking vdpau-driver-all:amd64 (1.4-3build2) ...
Selecting previously unselected package libwayland-bin.
Preparing to unpack .../351-libwayland-bin_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-bin (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package libwayland-dev:amd64.
Preparing to unpack .../352-libwayland-dev_1.20.0-1ubuntu0.1_amd64.deb ...
Unpacking libwayland-dev:amd64 (1.20.0-1ubuntu0.1) ...
Selecting previously unselected package pocketsphinx-en-us.
Preparing to unpack .../353-pocketsphinx-en-us_0.8.0+real5prealpha+1-14ubuntu1_all.deb ...
Unpacking pocketsphinx-en-us (0.8.0+real5prealpha+1-14ubuntu1) ...
Setting up libgme0:amd64 (0.6.3-2) ...
Setting up libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.4) ...
Setting up libksba8:amd64 (1.6.0-2ubuntu0.2) ...
Setting up media-types (7.0.0) ...
Setting up libpcrecpp0v5:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libgraphite2-3:amd64 (1.3.14-1build2) ...
Setting up libsrt1.4-gnutls:amd64 (1.4.4-4) ...
Setting up libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ...
Setting up libudfread0:amd64 (1.1.2-1) ...
Setting up gcc-11-base:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Setting up libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ...
Setting up libaom3:amd64 (3.3.0-1ubuntu0.1) ...
Setting up libpciaccess0:amd64 (0.16-3) ...
Setting up librabbitmq4:amd64 (0.10.0-1ubuntu2) ...
Setting up libxau6:amd64 (1:1.0.9-1build5) ...
Setting up libraw1394-11:amd64 (2.1.2-2build2) ...
Setting up lto-disabled-list (24) ...
Setting up libapparmor1:amd64 (3.0.4-2ubuntu2.4) ...
Setting up libpsl5:amd64 (0.21.0-1.2build2) ...
Setting up libcodec2-1.0:amd64 (1.0.1-3) ...
Setting up libsodium23:amd64 (1.0.18-1build2) ...
Setting up libpixman-1-dev:amd64 (0.40.0-1ubuntu0.22.04.1) ...
Setting up libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ...
Setting up libogg0:amd64 (1.3.5-0ubuntu3) ...
Setting up libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ...
Setting up libshine3:amd64 (3.1.1-2) ...
Setting up libglvnd-core-dev:amd64 (1.4.0-1) ...
Setting up libpcre16-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libtwolame0:amd64 (0.4.0-2build2) ...
Setting up libdatrie1:amd64 (0.2.13-2) ...
Setting up xdg-user-dirs (0.17-2ubuntu4) ...
Setting up libgsm1:amd64 (1.0.19-1) ...
Setting up libglib2.0-0:amd64 (2.72.4-0ubuntu2.6) ...
No schema files found: doing nothing.
Setting up libglvnd0:amd64 (1.4.0-1) ...
Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ...
Setting up libcbor0.8:amd64 (0.8.0-2ubuntu1) ...
Setting up libbrotli1:amd64 (1.0.9-2build6) ...
Setting up libsqlite3-0:amd64 (3.37.2-2ubuntu0.5) ...
Setting up libsasl2-modules:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
Setting up libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.4) ...
Setting up libnorm1:amd64 (1.5.9+dfsg-2) ...
Setting up libmysofa1:amd64 (1.2.1~dfsg0-1) ...
Setting up binutils-common:amd64 (2.38-4ubuntu2.8) ...
Setting up x11-common (1:7.7+23ubuntu2) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libsensors-config (1:3.6.0-7ubuntu1) ...
Setting up libnghttp2-14:amd64 (1.43.0-1ubuntu0.2) ...
Setting up libdeflate0:amd64 (1.10-2) ...
Setting up less (590-1ubuntu0.22.04.3) ...
Setting up libctf-nobfd0:amd64 (2.38-4ubuntu2.8) ...
Setting up xkb-data (2.33-1) ...
Setting up liblzo2-2:amd64 (2.10-2build3) ...
Setting up libnpth0:amd64 (1.6-3build2) ...
Setting up libc-ares2:amd64 (1.18.1-1ubuntu0.22.04.3) ...
Setting up libigdgmm12:amd64 (22.1.2+ds1-1) ...
Setting up libassuan0:amd64 (2.5.5-1build1) ...
Setting up libgomp1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up libcdio19:amd64 (2.1.0-3ubuntu0.2) ...
Setting up perl-modules-5.34 (5.34.0-3ubuntu1.5) ...
Setting up libxvidcore4:amd64 (2:1.3.7-1) ...
Setting up bzip2 (1.0.8-5build1) ...
Setting up libffi-dev:amd64 (3.4.2-4) ...
Setting up libldap-common (2.5.19+dfsg-0ubuntu0.22.04.1) ...
Setting up libpthread-stubs0-dev:amd64 (0.4-1build2) ...
Setting up libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ...
Setting up libpcre2-16-0:amd64 (10.39-3ubuntu0.1) ...
Setting up libopengl0:amd64 (1.4.0-1) ...
Setting up libfakeroot:amd64 (1.28-1ubuntu1) ...
Setting up libasan6:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Setting up libsnappy1v5:amd64 (1.1.8-1build3) ...
Setting up libflac8:amd64 (1.3.3-2ubuntu0.2) ...
Setting up libsasl2-modules-db:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
Setting up fakeroot (1.28-1ubuntu1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
Setting up libasound2-data (1.2.6.1-1ubuntu1) ...
Setting up xtrans-dev (1.4.0-1) ...
Setting up libpcre2-32-0:amd64 (10.39-3ubuntu0.1) ...
Setting up libblas3:amd64 (3.10.0-2ubuntu1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
Setting up libglib2.0-data (2.72.4-0ubuntu2.6) ...
Setting up libgles2:amd64 (1.4.0-1) ...
Setting up libexpat1-dev:amd64 (2.4.7-1ubuntu0.6) ...
Setting up libslang2:amd64 (2.3.2-5build4) ...
Setting up libva2:amd64 (2.14.0-1) ...
Setting up libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ...
Setting up libx11-data (2:1.7.5-1ubuntu0.3) ...
Setting up make (4.3-4.1build1) ...
Setting up libmpfr6:amd64 (4.1.0-3build3) ...
Setting up gnupg-l10n (2.2.27-3ubuntu2.4) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2build4) ...
Setting up uuid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Setting up libgles1:amd64 (1.4.0-1) ...
Setting up libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ...
Setting up libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ...
Setting up dbus (1.12.20-2ubuntu4.1) ...
Setting up xz-utils (5.2.5-2ubuntu1) ...
update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
Setting up libfribidi0:amd64 (1.0.8-2ubuntu3.1) ...
Setting up libopus0:amd64 (1.3.1-0.1build2) ...
Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up intel-media-va-driver:amd64 (22.3.1+dfsg1-1ubuntu2) ...
Setting up libpcre32-3:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up libmpc3:amd64 (1.2.1-2build1) ...
Setting up libatomic1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up libvorbis0a:amd64 (1.3.7-1build2) ...
Setting up patch (2.7.6-7build2) ...
Setting up fonts-dejavu-core (2.37-2build1) ...
Setting up libsepol-dev:amd64 (3.3-1build1) ...
Setting up ucf (3.0043) ...
Setting up libsensors5:amd64 (1:3.6.0-7ubuntu1) ...
Setting up libaacs0:amd64 (0.11.1-1) ...
Setting up pocketsphinx-en-us (0.8.0+real5prealpha+1-14ubuntu1) ...
Setting up libglapi-mesa:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up libsasl2-2:amd64 (2.1.27+dfsg2-3ubuntu1.2) ...
Setting up libssh-4:amd64 (0.9.6-2ubuntu0.22.04.4) ...
Setting up libgfortran5:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up libvulkan1:amd64 (1.3.204.1-2) ...
Setting up libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ...
Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up libbdplus0:amd64 (0.2.0-1) ...
Setting up libnuma1:amd64 (2.0.14-3ubuntu2) ...
Setting up libpcre2-posix3:amd64 (10.39-3ubuntu0.1) ...
Setting up libvidstab1.1:amd64 (1.1.0-2) ...
Setting up libmd0:amd64 (1.0.4-1build1) ...
Setting up alsa-topology-conf (1.2.5.1-2) ...
Setting up ocl-icd-libopencl1:amd64 (2.2.14-3) ...
Setting up libasyncns0:amd64 (0.8-6build2) ...
Setting up libxshmfence1:amd64 (1.3-1build4) ...
Setting up libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ...
Setting up libasound2:amd64 (1.2.6.1-1ubuntu1) ...
Setting up libmpdec3:amd64 (2.5.1-2build2) ...
Setting up libzimg2:amd64 (3.0.3+ds1-1) ...
Setting up libopenjp2-7:amd64 (2.4.0-6ubuntu0.4) ...
Setting up git-man (1:2.34.1-1ubuntu1.15) ...
Setting up libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ...
Setting up libopenal-data (1:1.19.1-2build3) ...
Setting up libthai-data (0.1.29-1build1) ...
Setting up libssh2-1:amd64 (1.10.0-3) ...
Setting up xorg-sgml-doctools (1:1.11-1.1) ...
Setting up netbase (6.3) ...
Setting up libvpx7:amd64 (1.11.0-2ubuntu2.4) ...
Setting up libtiff5:amd64 (4.3.0-6ubuntu0.12) ...
Setting up libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ...
Setting up libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ...
Setting up libopengl-dev:amd64 (1.4.0-1) ...
Setting up libbinutils:amd64 (2.38-4ubuntu2.8) ...
Setting up libdav1d5:amd64 (0.9.2-1) ...
Setting up libmfx1:amd64 (22.3.0-1) ...
Setting up libfido2-1:amd64 (1.10.0-1) ...
Setting up libisl23:amd64 (0.24-2build1) ...
Setting up libsamplerate0:amd64 (0.2.2-1build1) ...
Setting up libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ...
Setting up libbsd0:amd64 (0.11.5-1) ...
Setting up libdrm-common (2.4.113-2~ubuntu0.22.04.1) ...
Setting up libelf1:amd64 (0.186-1ubuntu0.1) ...
Setting up readline-common (8.1.2-1) ...
Setting up publicsuffix (20211207.1025-1) ...
Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up libonig5:amd64 (6.9.7.1-2build1) ...
Setting up liblocale-gettext-perl (1.07-4build3) ...
Setting up libbrotli-dev:amd64 (1.0.9-2build6) ...
Setting up libzvbi-common (0.2.35-19) ...
Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up libmp3lame0:amd64 (3.100-3build2) ...
Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04.2) ...
Setting up libvorbisenc2:amd64 (1.3.7-1build2) ...
Setting up libgdbm6:amd64 (1.23-1) ...
Setting up libpopt0:amd64 (1.18-3build1) ...
Setting up libicu70:amd64 (70.1-2) ...
Setting up libiec61883-0:amd64 (1.2.0-4build3) ...
Setting up libserd-0-0:amd64 (0.30.10-2) ...
Setting up libtsan0:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Setting up libxkbcommon0:amd64 (1.4.0-1) ...
Setting up libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ...
Setting up libctf0:amd64 (2.38-4ubuntu2.8) ...
Setting up pinentry-curses (1.1.1-1build2) ...
Setting up x11proto-dev (2021.5-1) ...
Setting up libavc1394-0:amd64 (0.5.4-5build2) ...
Setting up cpp-11 (11.4.0-1ubuntu1~22.04.2) ...
Setting up libzvbi0:amd64 (0.2.35-19) ...
Setting up libblkid-dev:amd64 (2.37.2-4ubuntu3.4) ...
Setting up libice6:amd64 (2:1.0.10-1build2) ...
Setting up libxdmcp6:amd64 (1:1.1.3-0ubuntu5) ...
Setting up liblapack3:amd64 (3.10.0-2ubuntu1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
Setting up libxcb1:amd64 (1.14-3ubuntu3) ...
Setting up libxcb-xfixes0:amd64 (1.14-3ubuntu3) ...
Setting up libzmq5:amd64 (4.3.4-2) ...
Setting up libxau-dev:amd64 (1:1.0.9-1build5) ...
Setting up libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ...
Setting up libpcre2-dev:amd64 (10.39-3ubuntu0.1) ...
Setting up libice-dev:amd64 (2:1.0.10-1build2) ...
Setting up alsa-ucm-conf (1.2.6.3-1ubuntu1.12) ...
Setting up libxcb-render0:amd64 (1.14-3ubuntu3) ...
Setting up libsoxr0:amd64 (0.1.3-4build2) ...
Setting up libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ...
Setting up libselinux1-dev:amd64 (3.3-1build2) ...
Setting up libjq1:amd64 (1.6-2.1ubuntu3.1) ...
Setting up libpcre3-dev:amd64 (2:8.39-13ubuntu0.22.04.1) ...
Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
Setting up libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ...
Setting up libxcb-glx0:amd64 (1.14-3ubuntu3) ...
Setting up libedit2:amd64 (3.1-20210910-1build1) ...
Setting up libreadline8:amd64 (8.1.2-1) ...
Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ...
Setting up libglib2.0-bin (2.72.4-0ubuntu2.6) ...
Setting up libxcb-shm0:amd64 (1.14-3ubuntu3) ...
Setting up libldap-2.5-0:amd64 (2.5.19+dfsg-0ubuntu0.22.04.1) ...
Setting up libfreetype-dev:amd64 (2.11.1+dfsg-1ubuntu0.3) ...
Setting up libxcb-present0:amd64 (1.14-3ubuntu3) ...
Setting up libpython3.10-stdlib:amd64 (3.10.12-1~22.04.11) ...
Setting up libthai0:amd64 (0.1.29-1build1) ...
Setting up libvorbisfile3:amd64 (1.3.7-1build2) ...
Setting up libxdmcp-dev:amd64 (1:1.1.3-0ubuntu5) ...
Setting up libxcb-sync1:amd64 (1.14-3ubuntu3) ...
Setting up libdc1394-25:amd64 (2.2.6-4) ...
Setting up libgdbm-compat4:amd64 (1.23-1) ...
Setting up libx265-199:amd64 (3.5-2) ...
Setting up librubberband2:amd64 (2.0.0-2) ...
Setting up libsndio7.0:amd64 (1.8.1-1.1) ...
Setting up libxcb-dri2-0:amd64 (1.14-3ubuntu3) ...
Setting up libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ...
Setting up libgcc-11-dev:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Setting up libdrm2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Setting up libflite1:amd64 (2.2-3) ...
Setting up libva-drm2:amd64 (2.14.0-1) ...
Setting up libsord-0-0:amd64 (0.16.8-2) ...
Setting up libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ...
Setting up libxcb-randr0:amd64 (1.14-3ubuntu3) ...
Setting up cpp (4:11.2.0-1ubuntu1) ...
Setting up libsratom-0-0:amd64 (0.6.8-1) ...
Setting up jq (1.6-2.1ubuntu3.1) ...
Setting up gpgconf (2.2.27-3ubuntu2.4) ...
Setting up libdecor-0-0:amd64 (0.1.0-3build1) ...
Setting up libx11-6:amd64 (2:1.7.5-1ubuntu0.3) ...
Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ...
Setting up libsndfile1:amd64 (1.0.31-2ubuntu0.2) ...
Setting up libsm6:amd64 (2:1.2.3-1build2) ...
Setting up liblilv-0-0:amd64 (0.24.12-2) ...
Setting up libxml2:amd64 (2.9.13+dfsg-1ubuntu0.9) ...
Setting up libopenmpt0:amd64 (0.6.1-1) ...
Setting up libmount-dev:amd64 (2.37.2-4ubuntu3.4) ...
Setting up libxmuu1:amd64 (2:1.1.3-3) ...
Setting up gpg (2.2.27-3ubuntu2.4) ...
Setting up rsync (3.2.7-0ubuntu0.22.04.4) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libpython3-stdlib:amd64 (3.10.6-1~22.04.1) ...
Setting up gnupg-utils (2.2.27-3ubuntu2.4) ...
Setting up binutils-x86-64-linux-gnu (2.38-4ubuntu2.8) ...
Setting up libdrm-amdgpu1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Setting up libxcb-dri3-0:amd64 (1.14-3ubuntu3) ...
Setting up libx11-xcb1:amd64 (2:1.7.5-1ubuntu0.3) ...
Setting up fontconfig (2.13.1-4.2ubuntu5) ...
Regenerating fonts cache... done.
Setting up libperl5.34:amd64 (5.34.0-3ubuntu1.5) ...
Setting up libdrm-nouveau2:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Setting up libaria2-0:amd64 (1.36.0-1) ...
Setting up gpg-agent (2.2.27-3ubuntu2.4) ...
Setting up libxcb1-dev:amd64 (1.14-3ubuntu3) ...
Setting up python3.10 (3.10.12-1~22.04.11) ...
Setting up libxrender1:amd64 (1:0.9.10-1build4) ...
Setting up libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ...
Setting up libsm-dev:amd64 (2:1.2.3-1build2) ...
Setting up aria2 (1.36.0-1) ...
Setting up libdrm-radeon1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Setting up openssh-client (1:8.9p1-3ubuntu0.13) ...
update-alternatives: using /usr/bin/ssh to provide /usr/bin/rsh (rsh) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/rsh.1.gz because associated file /usr/share/man/man1/ssh.1.gz (of link group rsh) doesn't exist
update-alternatives: using /usr/bin/slogin to provide /usr/bin/rlogin (rlogin) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/rlogin.1.gz because associated file /usr/share/man/man1/slogin.1.gz (of link group rlogin) doesn't exist
update-alternatives: using /usr/bin/scp to provide /usr/bin/rcp (rcp) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/rcp.1.gz because associated file /usr/share/man/man1/scp.1.gz (of link group rcp) doesn't exist
Setting up gpgsm (2.2.27-3ubuntu2.4) ...
Setting up libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
Setting up libdrm-intel1:amd64 (2.4.113-2~ubuntu0.22.04.1) ...
Setting up libx11-dev:amd64 (2:1.7.5-1ubuntu0.3) ...
Setting up libxext6:amd64 (2:1.3.4-1build1) ...
Setting up libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.21) ...
Setting up python3 (3.10.6-1~22.04.1) ...
Setting up libopenal1:amd64 (1:1.19.1-2build3) ...
Setting up binutils (2.38-4ubuntu2.8) ...
Setting up libcairo2:amd64 (1.16.0-5ubuntu2) ...
Setting up libfreetype6-dev:amd64 (2.11.1+dfsg-1ubuntu0.3) ...
Setting up libxxf86vm1:amd64 (1:1.1.4-1build3) ...
Setting up dirmngr (2.2.27-3ubuntu2.4) ...
Setting up libxcb-shm0-dev:amd64 (1.14-3ubuntu3) ...
Setting up libwayland-bin (1.20.0-1ubuntu0.1) ...
Setting up perl (5.34.0-3ubuntu1.5) ...
Setting up libegl-mesa0:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up libass9:amd64 (1:0.15.2-1) ...
Setting up libxfixes3:amd64 (1:6.0.0-1) ...
Setting up shared-mime-info (2.1-2) ...
Setting up libxinerama1:amd64 (2:1.1.4-3) ...
Setting up libxv1:amd64 (2:1.0.11-1build2) ...
Setting up libxrandr2:amd64 (2:1.5.2-1build1) ...
Setting up libxcb-render0-dev:amd64 (1.14-3ubuntu3) ...
Setting up libdpkg-perl (1.21.1ubuntu2.6) ...
Setting up libtime-duration-perl (1.21-1) ...
Setting up libtimedate-perl (2.3300-2) ...
Setting up libxext-dev:amd64 (2:1.3.4-1build1) ...
Setting up libstdc++-11-dev:amd64 (11.4.0-1ubuntu1~22.04.2) ...
Setting up gpg-wks-server (2.2.27-3ubuntu2.4) ...
Setting up gcc-11 (11.4.0-1ubuntu1~22.04.2) ...
Setting up xauth (1:1.1-1build2) ...
Setting up libvdpau1:amd64 (1.4-3build2) ...
Setting up libllvm15:amd64 (1:15.0.7-0ubuntu0.22.04.3) ...
Setting up libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ...
Setting up libegl1:amd64 (1.4.0-1) ...
Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.4) ...
Setting up libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ...
Setting up libxss1:amd64 (1:1.2.3-1build2) ...
Setting up mesa-va-drivers:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
Setting up libbluray2:amd64 (1:1.3.1-1) ...
Setting up libva-x11-2:amd64 (2.14.0-1) ...
Setting up python3-lib2to3 (3.10.8-1~22.04) ...
Setting up libxrender-dev:amd64 (1:0.9.10-1build4) ...
Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1) ...
Setting up libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ...
Setting up python3-distutils (3.10.8-1~22.04) ...
Setting up libcairo-script-interpreter2:amd64 (1.16.0-5ubuntu2) ...
Setting up libglib2.0-dev-bin (2.72.4-0ubuntu2.6) ...
Setting up libgl1-amber-dri:amd64 (21.3.9-0ubuntu1~22.04.1) ...
Setting up mesa-vulkan-drivers:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up mesa-vdpau-drivers:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up libvulkan-dev:amd64 (1.3.204.1-2) ...
Setting up libxi6:amd64 (2:1.8-1build1) ...
Setting up gpg-wks-client (2.2.27-3ubuntu2.4) ...
Setting up libio-pty-perl (1:1.15-2build2) ...
Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ...
Setting up g++-11 (11.4.0-1ubuntu1~22.04.2) ...
Setting up libfile-fcntllock-perl (0.22-3build7) ...
Setting up libalgorithm-diff-perl (1.201-1) ...
Setting up libxcursor1:amd64 (1:1.2.0-2build4) ...
Setting up libgl1-mesa-dri:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up libwayland-dev:amd64 (1.20.0-1ubuntu0.1) ...
Setting up libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up gcc (4:11.2.0-1ubuntu1) ...
Setting up dpkg-dev (1.21.1ubuntu2.6) ...
Setting up librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
Setting up liberror-perl (0.17029-1) ...
Setting up libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ...
Setting up libxrandr-dev:amd64 (2:1.5.2-1build1) ...
Setting up va-driver-all:amd64 (2.14.0-1) ...
Setting up libdecor-0-plugin-1-cairo:amd64 (0.1.0-3build1) ...
Setting up libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up pkg-config (0.29.2-1ubuntu3) ...
Setting up libipc-run-perl (20200505.0-1) ...
Setting up git (1:2.34.1-1ubuntu1.15) ...
Setting up librsvg2-common:amd64 (2.52.5+dfsg-3ubuntu0.2) ...
Setting up vdpau-driver-all:amd64 (1.4-3build2) ...
Setting up g++ (4:11.2.0-1ubuntu1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist
Setting up libgdk-pixbuf2.0-bin (2.42.8+dfsg-1ubuntu0.4) ...
Setting up gnupg (2.2.27-3ubuntu2.4) ...
Setting up build-essential (12.9ubuntu3) ...
Setting up libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ...
Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
Setting up libalgorithm-merge-perl (0.08-3) ...
Setting up libglx-mesa0:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up moreutils (0.66-1) ...
Setting up libglx0:amd64 (1.4.0-1) ...
Setting up libfontconfig-dev:amd64 (2.13.1-4.2ubuntu5) ...
Setting up libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up libgl1:amd64 (1.4.0-1) ...
Setting up libglib2.0-dev:amd64 (2.72.4-0ubuntu2.6) ...
Setting up libglx-dev:amd64 (1.4.0-1) ...
Setting up libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up libcairo2-dev:amd64 (1.16.0-5ubuntu2) ...
Setting up libgl-dev:amd64 (1.4.0-1) ...
Setting up libchromaprint1:amd64 (1.5.1-2) ...
Setting up libglfw3:amd64 (3.3.6-1) ...
Setting up libfontconfig1-dev:amd64 (2.13.1-4.2ubuntu5) ...
Setting up libglfw3-dev:amd64 (3.3.6-1) ...
Setting up libegl-dev:amd64 (1.4.0-1) ...
Setting up libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up libgles-dev:amd64 (1.4.0-1) ...
Setting up libglvnd-dev:amd64 (1.4.0-1) ...
Setting up libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ...
Setting up libegl1-mesa-dev:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Setting up libgles2-mesa-dev:amd64 (23.2.1-1ubuntu3.1~22.04.3) ...
Processing triggers for libc-bin (2.35-0ubuntu3.6) ...
Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.4) ...
--> 4ca8a85f1844
[2/2] STEP 4/20: WORKDIR /
--> e950d08b5a7d
[2/2] STEP 5/20: RUN --mount=type=cache,target=/root/.cache/pip git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git && cd stable-diffusion-webui && git reset --hard v1.9.4 && pip install -r requirements_versions.txt
Cloning into 'stable-diffusion-webui'...
HEAD is now at feee37d7 Merge branch 'dev'
Collecting setuptools==69.5.1 (from -r requirements_versions.txt (line 1))
Downloading setuptools-69.5.1-py3-none-any.whl.metadata (6.2 kB)
Collecting GitPython==3.1.32 (from -r requirements_versions.txt (line 2))
Downloading GitPython-3.1.32-py3-none-any.whl.metadata (10.0 kB)
Collecting Pillow==9.5.0 (from -r requirements_versions.txt (line 3))
Downloading Pillow-9.5.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (9.5 kB)
Collecting accelerate==0.21.0 (from -r requirements_versions.txt (line 4))
Downloading accelerate-0.21.0-py3-none-any.whl.metadata (17 kB)
Collecting blendmodes==2022 (from -r requirements_versions.txt (line 5))
Downloading blendmodes-2022-py3-none-any.whl.metadata (12 kB)
Collecting clean-fid==0.1.35 (from -r requirements_versions.txt (line 6))
Downloading clean_fid-0.1.35-py3-none-any.whl.metadata (36 kB)
Collecting diskcache==5.6.3 (from -r requirements_versions.txt (line 7))
Downloading diskcache-5.6.3-py3-none-any.whl.metadata (20 kB)
Collecting einops==0.4.1 (from -r requirements_versions.txt (line 8))
Downloading einops-0.4.1-py3-none-any.whl.metadata (10 kB)
Collecting facexlib==0.3.0 (from -r requirements_versions.txt (line 9))
Downloading facexlib-0.3.0-py3-none-any.whl.metadata (4.6 kB)
Collecting fastapi==0.94.0 (from -r requirements_versions.txt (line 10))
Downloading fastapi-0.94.0-py3-none-any.whl.metadata (25 kB)
Collecting gradio==3.41.2 (from -r requirements_versions.txt (line 11))
Downloading gradio-3.41.2-py3-none-any.whl.metadata (17 kB)
Collecting httpcore==0.15 (from -r requirements_versions.txt (line 12))
Downloading httpcore-0.15.0-py3-none-any.whl.metadata (15 kB)
Collecting inflection==0.5.1 (from -r requirements_versions.txt (line 13))
Downloading inflection-0.5.1-py2.py3-none-any.whl.metadata (1.7 kB)
Collecting jsonmerge==1.8.0 (from -r requirements_versions.txt (line 14))
Downloading jsonmerge-1.8.0.tar.gz (26 kB)
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting kornia==0.6.7 (from -r requirements_versions.txt (line 15))
Downloading kornia-0.6.7-py2.py3-none-any.whl.metadata (12 kB)
Collecting lark==1.1.2 (from -r requirements_versions.txt (line 16))
Downloading lark-1.1.2-py2.py3-none-any.whl.metadata (1.7 kB)
Collecting numpy==1.26.2 (from -r requirements_versions.txt (line 17))
Downloading numpy-1.26.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 259.6 kB/s eta 0:00:00
Collecting omegaconf==2.2.3 (from -r requirements_versions.txt (line 18))
Downloading omegaconf-2.2.3-py3-none-any.whl.metadata (3.9 kB)
Collecting open-clip-torch==2.20.0 (from -r requirements_versions.txt (line 19))
Downloading open_clip_torch-2.20.0-py3-none-any.whl.metadata (46 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.8/46.8 kB 4.8 MB/s eta 0:00:00
Collecting piexif==1.1.3 (from -r requirements_versions.txt (line 20))
Downloading piexif-1.1.3-py2.py3-none-any.whl.metadata (3.7 kB)
Collecting psutil==5.9.5 (from -r requirements_versions.txt (line 21))
Downloading psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB)
Collecting pytorch_lightning==1.9.4 (from -r requirements_versions.txt (line 22))
Downloading pytorch_lightning-1.9.4-py3-none-any.whl.metadata (22 kB)
Collecting resize-right==0.0.2 (from -r requirements_versions.txt (line 23))
Downloading resize_right-0.0.2-py3-none-any.whl.metadata (551 bytes)
Collecting safetensors==0.4.2 (from -r requirements_versions.txt (line 24))
Downloading safetensors-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.8 kB)
Collecting scikit-image==0.21.0 (from -r requirements_versions.txt (line 25))
Downloading scikit_image-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (14 kB)
Collecting spandrel==0.1.6 (from -r requirements_versions.txt (line 26))
Downloading spandrel-0.1.6-py3-none-any.whl.metadata (12 kB)
Collecting tomesd==0.1.3 (from -r requirements_versions.txt (line 27))
Downloading tomesd-0.1.3-py3-none-any.whl.metadata (9.1 kB)
Requirement already satisfied: torch in /opt/conda/lib/python3.10/site-packages (from -r requirements_versions.txt (line 28)) (2.3.0)
Collecting torchdiffeq==0.2.3 (from -r requirements_versions.txt (line 29))
Downloading torchdiffeq-0.2.3-py3-none-any.whl.metadata (488 bytes)
Collecting torchsde==0.2.6 (from -r requirements_versions.txt (line 30))
Downloading torchsde-0.2.6-py3-none-any.whl.metadata (5.3 kB)
Collecting transformers==4.30.2 (from -r requirements_versions.txt (line 31))
Downloading transformers-4.30.2-py3-none-any.whl.metadata (113 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 113.6/113.6 kB 238.8 kB/s eta 0:00:00
Collecting httpx==0.24.1 (from -r requirements_versions.txt (line 32))
Downloading httpx-0.24.1-py3-none-any.whl.metadata (7.4 kB)
Collecting pillow-avif-plugin==1.4.3 (from -r requirements_versions.txt (line 33))
Downloading pillow_avif_plugin-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB)
Collecting gitdb<5,>=4.0.1 (from GitPython==3.1.32->-r requirements_versions.txt (line 2))
Downloading gitdb-4.0.12-py3-none-any.whl.metadata (1.2 kB)
Requirement already satisfied: packaging>=20.0 in /opt/conda/lib/python3.10/site-packages (from accelerate==0.21.0->-r requirements_versions.txt (line 4)) (23.2)
Requirement already satisfied: pyyaml in /opt/conda/lib/python3.10/site-packages (from accelerate==0.21.0->-r requirements_versions.txt (line 4)) (6.0.1)
Collecting aenum<4,>=3.1.7 (from blendmodes==2022->-r requirements_versions.txt (line 5))
Downloading aenum-3.1.16-py3-none-any.whl.metadata (3.8 kB)
Collecting deprecation<3,>=2.1.0 (from blendmodes==2022->-r requirements_versions.txt (line 5))
Downloading deprecation-2.1.0-py2.py3-none-any.whl.metadata (4.6 kB)
Requirement already satisfied: torchvision in /opt/conda/lib/python3.10/site-packages (from clean-fid==0.1.35->-r requirements_versions.txt (line 6)) (0.18.0)
Collecting scipy>=1.0.1 (from clean-fid==0.1.35->-r requirements_versions.txt (line 6))
Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.0/62.0 kB 7.3 MB/s eta 0:00:00
Requirement already satisfied: tqdm>=4.28.1 in /opt/conda/lib/python3.10/site-packages (from clean-fid==0.1.35->-r requirements_versions.txt (line 6)) (4.65.0)
Requirement already satisfied: requests in /opt/conda/lib/python3.10/site-packages (from clean-fid==0.1.35->-r requirements_versions.txt (line 6)) (2.31.0)
Collecting filterpy (from facexlib==0.3.0->-r requirements_versions.txt (line 9))
Downloading filterpy-1.4.5.zip (177 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.0/178.0 kB 20.5 MB/s eta 0:00:00
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting numba (from facexlib==0.3.0->-r requirements_versions.txt (line 9))
Downloading numba-0.62.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB)
Collecting opencv-python (from facexlib==0.3.0->-r requirements_versions.txt (line 9))
Downloading opencv_python-4.12.0.88-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (19 kB)
Collecting pydantic!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0,>=1.6.2 (from fastapi==0.94.0->-r requirements_versions.txt (line 10))
Downloading pydantic-1.10.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (154 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 154.8/154.8 kB 329.0 kB/s eta 0:00:00
Collecting starlette<0.27.0,>=0.26.0 (from fastapi==0.94.0->-r requirements_versions.txt (line 10))
Downloading starlette-0.26.1-py3-none-any.whl.metadata (5.8 kB)
Collecting aiofiles<24.0,>=22.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading aiofiles-23.2.1-py3-none-any.whl.metadata (9.7 kB)
Collecting altair<6.0,>=4.2.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading altair-5.5.0-py3-none-any.whl.metadata (11 kB)
Collecting ffmpy (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading ffmpy-0.6.1-py3-none-any.whl.metadata (2.9 kB)
Collecting gradio-client==0.5.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading gradio_client-0.5.0-py3-none-any.whl.metadata (7.1 kB)
Collecting huggingface-hub>=0.14.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading huggingface_hub-0.35.3-py3-none-any.whl.metadata (14 kB)
Collecting importlib-resources<7.0,>=1.3 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading importlib_resources-6.5.2-py3-none-any.whl.metadata (3.9 kB)
Requirement already satisfied: jinja2<4.0 in /opt/conda/lib/python3.10/site-packages (from gradio==3.41.2->-r requirements_versions.txt (line 11)) (3.1.3)
Requirement already satisfied: markupsafe~=2.0 in /opt/conda/lib/python3.10/site-packages (from gradio==3.41.2->-r requirements_versions.txt (line 11)) (2.1.3)
Collecting matplotlib~=3.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading matplotlib-3.10.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (11 kB)
Collecting orjson~=3.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading orjson-3.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.9/41.9 kB 161.5 kB/s eta 0:00:00
Collecting pandas<3.0,>=1.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (91 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 91.2/91.2 kB 13.9 MB/s eta 0:00:00
Collecting pydub (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB)
Collecting python-multipart (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading python_multipart-0.0.20-py3-none-any.whl.metadata (1.8 kB)
Collecting semantic-version~=2.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading semantic_version-2.10.0-py2.py3-none-any.whl.metadata (9.7 kB)
Requirement already satisfied: typing-extensions~=4.0 in /opt/conda/lib/python3.10/site-packages (from gradio==3.41.2->-r requirements_versions.txt (line 11)) (4.11.0)
Collecting uvicorn>=0.14.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading uvicorn-0.37.0-py3-none-any.whl.metadata (6.6 kB)
Collecting websockets<12.0,>=10.0 (from gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading websockets-11.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB)
Collecting h11<0.13,>=0.11 (from httpcore==0.15->-r requirements_versions.txt (line 12))
Downloading h11-0.12.0-py3-none-any.whl.metadata (8.1 kB)
Collecting sniffio==1.* (from httpcore==0.15->-r requirements_versions.txt (line 12))
Downloading sniffio-1.3.1-py3-none-any.whl.metadata (3.9 kB)
Collecting anyio==3.* (from httpcore==0.15->-r requirements_versions.txt (line 12))
Downloading anyio-3.7.1-py3-none-any.whl.metadata (4.7 kB)
Requirement already satisfied: certifi in /opt/conda/lib/python3.10/site-packages (from httpcore==0.15->-r requirements_versions.txt (line 12)) (2024.2.2)
Requirement already satisfied: jsonschema in /opt/conda/lib/python3.10/site-packages (from jsonmerge==1.8.0->-r requirements_versions.txt (line 14)) (4.19.2)
Collecting antlr4-python3-runtime==4.9.* (from omegaconf==2.2.3->-r requirements_versions.txt (line 18))
Downloading antlr4-python3-runtime-4.9.3.tar.gz (117 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.0/117.0 kB 524.8 kB/s eta 0:00:00
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting regex (from open-clip-torch==2.20.0->-r requirements_versions.txt (line 19))
Downloading regex-2025.9.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (40 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 40.5/40.5 kB 3.9 MB/s eta 0:00:00
Collecting ftfy (from open-clip-torch==2.20.0->-r requirements_versions.txt (line 19))
Downloading ftfy-6.3.1-py3-none-any.whl.metadata (7.3 kB)
Collecting sentencepiece (from open-clip-torch==2.20.0->-r requirements_versions.txt (line 19))
Downloading sentencepiece-0.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (10 kB)
Collecting protobuf<4 (from open-clip-torch==2.20.0->-r requirements_versions.txt (line 19))
Downloading protobuf-3.20.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.metadata (679 bytes)
Collecting timm (from open-clip-torch==2.20.0->-r requirements_versions.txt (line 19))
Downloading timm-1.0.20-py3-none-any.whl.metadata (61 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.7/61.7 kB 259.7 kB/s eta 0:00:00
Requirement already satisfied: fsspec>2021.06.0 in /opt/conda/lib/python3.10/site-packages (from fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22)) (2024.3.1)
Collecting torchmetrics>=0.7.0 (from pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading torchmetrics-1.8.2-py3-none-any.whl.metadata (22 kB)
Collecting lightning-utilities>=0.6.0.post0 (from pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading lightning_utilities-0.15.2-py3-none-any.whl.metadata (5.7 kB)
Requirement already satisfied: networkx>=2.8 in /opt/conda/lib/python3.10/site-packages (from scikit-image==0.21.0->-r requirements_versions.txt (line 25)) (3.1)
Collecting imageio>=2.27 (from scikit-image==0.21.0->-r requirements_versions.txt (line 25))
Downloading imageio-2.37.0-py3-none-any.whl.metadata (5.2 kB)
Collecting tifffile>=2022.8.12 (from scikit-image==0.21.0->-r requirements_versions.txt (line 25))
Downloading tifffile-2025.5.10-py3-none-any.whl.metadata (31 kB)
Collecting PyWavelets>=1.1.1 (from scikit-image==0.21.0->-r requirements_versions.txt (line 25))
Downloading pywavelets-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (9.0 kB)
Collecting lazy_loader>=0.2 (from scikit-image==0.21.0->-r requirements_versions.txt (line 25))
Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB)
Collecting trampoline>=0.1.2 (from torchsde==0.2.6->-r requirements_versions.txt (line 30))
Downloading trampoline-0.1.2-py3-none-any.whl.metadata (10 kB)
Requirement already satisfied: filelock in /opt/conda/lib/python3.10/site-packages (from transformers==4.30.2->-r requirements_versions.txt (line 31)) (3.13.1)
Collecting tokenizers!=0.11.3,<0.14,>=0.11.1 (from transformers==4.30.2->-r requirements_versions.txt (line 31))
Downloading tokenizers-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB)
Requirement already satisfied: idna in /opt/conda/lib/python3.10/site-packages (from httpx==0.24.1->-r requirements_versions.txt (line 32)) (3.4)
Requirement already satisfied: exceptiongroup in /opt/conda/lib/python3.10/site-packages (from anyio==3.*->httpcore==0.15->-r requirements_versions.txt (line 12)) (1.2.0)
Requirement already satisfied: sympy in /opt/conda/lib/python3.10/site-packages (from torch->-r requirements_versions.txt (line 28)) (1.12)
Collecting narwhals>=1.14.2 (from altair<6.0,>=4.2.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading narwhals-2.6.0-py3-none-any.whl.metadata (11 kB)
Collecting aiohttp!=4.0.0a0,!=4.0.0a1 (from fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading aiohttp-3.12.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.7 kB)
Collecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->GitPython==3.1.32->-r requirements_versions.txt (line 2))
Downloading smmap-5.0.2-py3-none-any.whl.metadata (4.3 kB)
Collecting hf-xet<2.0.0,>=1.1.3 (from huggingface-hub>=0.14.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading hf_xet-1.1.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.7 kB)
Requirement already satisfied: attrs>=22.2.0 in /opt/conda/lib/python3.10/site-packages (from jsonschema->jsonmerge==1.8.0->-r requirements_versions.txt (line 14)) (23.1.0)
Requirement already satisfied: jsonschema-specifications>=2023.03.6 in /opt/conda/lib/python3.10/site-packages (from jsonschema->jsonmerge==1.8.0->-r requirements_versions.txt (line 14)) (2023.7.1)
Requirement already satisfied: referencing>=0.28.4 in /opt/conda/lib/python3.10/site-packages (from jsonschema->jsonmerge==1.8.0->-r requirements_versions.txt (line 14)) (0.30.2)
Requirement already satisfied: rpds-py>=0.7.1 in /opt/conda/lib/python3.10/site-packages (from jsonschema->jsonmerge==1.8.0->-r requirements_versions.txt (line 14)) (0.10.6)
Collecting contourpy>=1.0.1 (from matplotlib~=3.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.5 kB)
Collecting cycler>=0.10 (from matplotlib~=3.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)
Collecting fonttools>=4.22.0 (from matplotlib~=3.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading fonttools-4.60.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (112 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 112.3/112.3 kB 239.5 kB/s eta 0:00:00
Collecting kiwisolver>=1.3.1 (from matplotlib~=3.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading kiwisolver-1.4.9-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.metadata (6.3 kB)
Collecting pyparsing>=2.3.1 (from matplotlib~=3.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading pyparsing-3.2.5-py3-none-any.whl.metadata (5.0 kB)
Collecting python-dateutil>=2.7 (from matplotlib~=3.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
Requirement already satisfied: pytz>=2020.1 in /opt/conda/lib/python3.10/site-packages (from pandas<3.0,>=1.0->gradio==3.41.2->-r requirements_versions.txt (line 11)) (2023.3.post1)
Collecting tzdata>=2022.7 (from pandas<3.0,>=1.0->gradio==3.41.2->-r requirements_versions.txt (line 11))
Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB)
Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/lib/python3.10/site-packages (from requests->clean-fid==0.1.35->-r requirements_versions.txt (line 6)) (2.0.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/lib/python3.10/site-packages (from requests->clean-fid==0.1.35->-r requirements_versions.txt (line 6)) (2.1.0)
Requirement already satisfied: click>=7.0 in /opt/conda/lib/python3.10/site-packages (from uvicorn>=0.14.0->gradio==3.41.2->-r requirements_versions.txt (line 11)) (8.1.7)
Requirement already satisfied: wcwidth in /opt/conda/lib/python3.10/site-packages (from ftfy->open-clip-torch==2.20.0->-r requirements_versions.txt (line 19)) (0.2.5)
Collecting llvmlite<0.46,>=0.45.0dev0 (from numba->facexlib==0.3.0->-r requirements_versions.txt (line 9))
Downloading llvmlite-0.45.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (4.9 kB)
INFO: pip is looking at multiple versions of opencv-python to determine which version is compatible with other requirements. This could take a while.
Collecting opencv-python (from facexlib==0.3.0->-r requirements_versions.txt (line 9))
Downloading opencv_python-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB)
Requirement already satisfied: mpmath>=0.19 in /opt/conda/lib/python3.10/site-packages (from sympy->torch->-r requirements_versions.txt (line 28)) (1.3.0)
Collecting aiohappyeyeballs>=2.5.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB)
Collecting aiosignal>=1.4.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB)
Collecting async-timeout<6.0,>=4.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB)
Collecting frozenlist>=1.1.1 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (18 kB)
Collecting multidict<7.0,>=4.5 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading multidict-6.6.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (5.3 kB)
Collecting propcache>=0.2.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading propcache-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (12 kB)
Collecting yarl<2.0,>=1.17.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]>2021.06.0->pytorch_lightning==1.9.4->-r requirements_versions.txt (line 22))
Downloading yarl-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (73 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 73.9/73.9 kB 323.2 kB/s eta 0:00:00
Requirement already satisfied: six>=1.5 in /opt/conda/lib/python3.10/site-packages (from python-dateutil>=2.7->matplotlib~=3.0->gradio==3.41.2->-r requirements_versions.txt (line 11)) (1.16.0)
Downloading setuptools-69.5.1-py3-none-any.whl (894 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 894.6/894.6 kB 826.3 kB/s eta 0:00:00
Downloading GitPython-3.1.32-py3-none-any.whl (188 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 188.5/188.5 kB 882.9 kB/s eta 0:00:00
Downloading Pillow-9.5.0-cp310-cp310-manylinux_2_28_x86_64.whl (3.4 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 4.6 MB/s eta 0:00:00
Downloading accelerate-0.21.0-py3-none-any.whl (244 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 244.2/244.2 kB 1.0 MB/s eta 0:00:00
Downloading blendmodes-2022-py3-none-any.whl (10 kB)
Downloading clean_fid-0.1.35-py3-none-any.whl (26 kB)
Downloading diskcache-5.6.3-py3-none-any.whl (45 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.5/45.5 kB 90.8 kB/s eta 0:00:00
Downloading einops-0.4.1-py3-none-any.whl (28 kB)
Downloading facexlib-0.3.0-py3-none-any.whl (59 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 59.6/59.6 kB 381.5 kB/s eta 0:00:00
Downloading fastapi-0.94.0-py3-none-any.whl (56 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 kB 208.6 kB/s eta 0:00:00
Downloading gradio-3.41.2-py3-none-any.whl (20.1 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 20.1/20.1 MB 8.6 MB/s eta 0:00:00
Downloading httpcore-0.15.0-py3-none-any.whl (68 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 68.4/68.4 kB 259.6 kB/s eta 0:00:00
Downloading inflection-0.5.1-py2.py3-none-any.whl (9.5 kB)
Downloading kornia-0.6.7-py2.py3-none-any.whl (565 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 565.1/565.1 kB 670.9 kB/s eta 0:00:00
Downloading lark-1.1.2-py2.py3-none-any.whl (104 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.7/104.7 kB 428.7 kB/s eta 0:00:00
Downloading numpy-1.26.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 18.2/18.2 MB 5.8 MB/s eta 0:00:00
Downloading omegaconf-2.2.3-py3-none-any.whl (79 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 79.3/79.3 kB 147.8 kB/s eta 0:00:00
Downloading open_clip_torch-2.20.0-py3-none-any.whl (1.5 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 2.1 MB/s eta 0:00:00
Downloading piexif-1.1.3-py2.py3-none-any.whl (20 kB)
Downloading psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 282.1/282.1 kB 11.6 MB/s eta 0:00:00
Downloading pytorch_lightning-1.9.4-py3-none-any.whl (827 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 827.8/827.8 kB 1.9 MB/s eta 0:00:00
Downloading resize_right-0.0.2-py3-none-any.whl (8.9 kB)
Downloading safetensors-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 1.5 MB/s eta 0:00:00
Downloading scikit_image-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.8/13.8 MB 7.7 MB/s eta 0:00:00
Downloading spandrel-0.1.6-py3-none-any.whl (278 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 278.8/278.8 kB 621.1 kB/s eta 0:00:00
Downloading tomesd-0.1.3-py3-none-any.whl (11 kB)
Downloading torchdiffeq-0.2.3-py3-none-any.whl (31 kB)
Downloading torchsde-0.2.6-py3-none-any.whl (61 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.2/61.2 kB 1.5 MB/s eta 0:00:00
Downloading transformers-4.30.2-py3-none-any.whl (7.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/7.2 MB 6.5 MB/s eta 0:00:00
Downloading httpx-0.24.1-py3-none-any.whl (75 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75.4/75.4 kB 7.2 MB/s eta 0:00:00
Downloading pillow_avif_plugin-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.0 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.0/8.0 MB 4.8 MB/s eta 0:00:00
Downloading anyio-3.7.1-py3-none-any.whl (80 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 80.9/80.9 kB 353.7 kB/s eta 0:00:00
Downloading gradio_client-0.5.0-py3-none-any.whl (298 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 298.2/298.2 kB 626.6 kB/s eta 0:00:00
Downloading sniffio-1.3.1-py3-none-any.whl (10 kB)
Downloading aenum-3.1.16-py3-none-any.whl (165 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 165.6/165.6 kB 768.0 kB/s eta 0:00:00
Downloading aiofiles-23.2.1-py3-none-any.whl (15 kB)
Downloading altair-5.5.0-py3-none-any.whl (731 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 731.2/731.2 kB 3.1 MB/s eta 0:00:00
Downloading deprecation-2.1.0-py2.py3-none-any.whl (11 kB)
Downloading gitdb-4.0.12-py3-none-any.whl (62 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.8/62.8 kB 235.8 kB/s eta 0:00:00
Downloading h11-0.12.0-py3-none-any.whl (54 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 54.9/54.9 kB 226.6 kB/s eta 0:00:00
Downloading huggingface_hub-0.35.3-py3-none-any.whl (564 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 564.3/564.3 kB 851.7 kB/s eta 0:00:00
Downloading imageio-2.37.0-py3-none-any.whl (315 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 315.8/315.8 kB 41.5 MB/s eta 0:00:00
Downloading importlib_resources-6.5.2-py3-none-any.whl (37 kB)
Downloading lazy_loader-0.4-py3-none-any.whl (12 kB)
Downloading lightning_utilities-0.15.2-py3-none-any.whl (29 kB)
Downloading matplotlib-3.10.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.7/8.7 MB 5.0 MB/s eta 0:00:00
Downloading orjson-3.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (132 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 133.0/133.0 kB 18.1 MB/s eta 0:00:00
Downloading pandas-2.3.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (12.8 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.8/12.8 MB 6.5 MB/s eta 0:00:00
Downloading protobuf-3.20.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.1 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 4.7 MB/s eta 0:00:00
Downloading pydantic-1.10.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.0/3.0 MB 4.1 MB/s eta 0:00:00
Downloading pywavelets-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 7.3 MB/s eta 0:00:00
Downloading regex-2025.9.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (789 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 789.9/789.9 kB 1.2 MB/s eta 0:00:00
Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.7/37.7 MB 7.4 MB/s eta 0:00:00
Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB)
Downloading starlette-0.26.1-py3-none-any.whl (66 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.9/66.9 kB 5.8 MB/s eta 0:00:00
Downloading tifffile-2025.5.10-py3-none-any.whl (226 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 226.5/226.5 kB 912.1 kB/s eta 0:00:00
Downloading tokenizers-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 5.4 MB/s eta 0:00:00
Downloading torchmetrics-1.8.2-py3-none-any.whl (983 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 983.2/983.2 kB 2.2 MB/s eta 0:00:00
Downloading trampoline-0.1.2-py3-none-any.whl (5.2 kB)
Downloading uvicorn-0.37.0-py3-none-any.whl (67 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 68.0/68.0 kB 1.6 MB/s eta 0:00:00
Downloading websockets-11.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 129.9/129.9 kB 583.3 kB/s eta 0:00:00
Downloading ffmpy-0.6.1-py3-none-any.whl (5.5 kB)
Downloading ftfy-6.3.1-py3-none-any.whl (44 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.8/44.8 kB 5.0 MB/s eta 0:00:00
Downloading numba-0.62.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.7/3.7 MB 3.8 MB/s eta 0:00:00
Downloading opencv_python-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (63.0 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.0/63.0 MB 7.1 MB/s eta 0:00:00
Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB)
Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB)
Downloading sentencepiece-0.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.4 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 2.1 MB/s eta 0:00:00
Downloading timm-1.0.20-py3-none-any.whl (2.5 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 MB 4.9 MB/s eta 0:00:00
Downloading aiohttp-3.12.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 2.3 MB/s eta 0:00:00
Downloading contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 325.0/325.0 kB 1.3 MB/s eta 0:00:00
Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB)
Downloading fonttools-4.60.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.8 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.8/4.8 MB 6.4 MB/s eta 0:00:00
Downloading hf_xet-1.1.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.2/3.2 MB 6.0 MB/s eta 0:00:00
Downloading kiwisolver-1.4.9-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 2.4 MB/s eta 0:00:00
Downloading llvmlite-0.45.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (56.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 5.2 MB/s eta 0:00:00
Downloading narwhals-2.6.0-py3-none-any.whl (408 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 408.4/408.4 kB 1.8 MB/s eta 0:00:00
Downloading pyparsing-3.2.5-py3-none-any.whl (113 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 113.9/113.9 kB 248.7 kB/s eta 0:00:00
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.9/229.9 kB 10.7 MB/s eta 0:00:00
Downloading smmap-5.0.2-py3-none-any.whl (24 kB)
Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 347.8/347.8 kB 549.1 kB/s eta 0:00:00
Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB)
Downloading aiosignal-1.4.0-py3-none-any.whl (7.5 kB)
Downloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB)
Downloading frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (222 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 222.9/222.9 kB 899.0 kB/s eta 0:00:00
Downloading multidict-6.6.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (241 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 241.6/241.6 kB 1.1 MB/s eta 0:00:00
Downloading propcache-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 198.3/198.3 kB 4.2 MB/s eta 0:00:00
Downloading yarl-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 326.1/326.1 kB 1.5 MB/s eta 0:00:00
Building wheels for collected packages: jsonmerge, antlr4-python3-runtime, filterpy
Building wheel for jsonmerge (setup.py): started
Building wheel for jsonmerge (setup.py): finished with status 'done'
Created wheel for jsonmerge: filename=jsonmerge-1.8.0-py3-none-any.whl size=17986 sha256=5bfb7b78aa2f6e2685c35630fb49a56762e3915e2d8524d237034ed1d5d8aaf9
Stored in directory: /root/.cache/pip/wheels/5a/28/53/7c501247d1873c913eb46702f23045e4d9f565fe2a5ec13f69
Building wheel for antlr4-python3-runtime (setup.py): started
Building wheel for antlr4-python3-runtime (setup.py): finished with status 'done'
Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144554 sha256=788001598e2c4a4774f13ea3bc39017bb440efcd494678a948d87c4e27fb4130
Stored in directory: /root/.cache/pip/wheels/12/93/dd/1f6a127edc45659556564c5730f6d4e300888f4bca2d4c5a88
Building wheel for filterpy (setup.py): started
Building wheel for filterpy (setup.py): finished with status 'done'
Created wheel for filterpy: filename=filterpy-1.4.5-py3-none-any.whl size=110459 sha256=e3078d2510291986864248d8defb43184d85012a7593f61b65510d87242e39d1
Stored in directory: /root/.cache/pip/wheels/0f/0c/ea/218f266af4ad626897562199fbbcba521b8497303200186102
Successfully built jsonmerge antlr4-python3-runtime filterpy
Installing collected packages: trampoline, tokenizers, resize-right, pydub, pillow-avif-plugin, lark, einops, antlr4-python3-runtime, aenum, websockets, tzdata, sniffio, smmap, setuptools, sentencepiece, semantic-version, safetensors, regex, python-multipart, python-dateutil, pyparsing, pydantic, psutil, protobuf, propcache, Pillow, piexif, orjson, omegaconf, numpy, narwhals, multidict, llvmlite, lazy_loader, kiwisolver, inflection, importlib-resources, hf-xet, h11, ftfy, frozenlist, fonttools, ffmpy, diskcache, deprecation, cycler, async-timeout, aiohappyeyeballs, aiofiles, yarl, uvicorn, tifffile, scipy, PyWavelets, pandas, opencv-python, numba, lightning-utilities, imageio, huggingface-hub, gitdb, contourpy, blendmodes, anyio, aiosignal, transformers, torchsde, torchmetrics, torchdiffeq, tomesd, starlette, scikit-image, matplotlib, kornia, httpcore, GitPython, aiohttp, accelerate, timm, spandrel, jsonmerge, httpx, filterpy, fastapi, clean-fid, altair, pytorch_lightning, open-clip-torch, gradio-client, facexlib, gradio
Attempting uninstall: lark
Found existing installation: lark 1.1.9
Uninstalling lark-1.1.9:
Successfully uninstalled lark-1.1.9
Attempting uninstall: setuptools
Found existing installation: setuptools 68.2.2
Uninstalling setuptools-68.2.2:
Successfully uninstalled setuptools-68.2.2
Attempting uninstall: psutil
Found existing installation: psutil 5.9.0
Uninstalling psutil-5.9.0:
Successfully uninstalled psutil-5.9.0
Attempting uninstall: Pillow
Found existing installation: pillow 10.2.0
Uninstalling pillow-10.2.0:
Successfully uninstalled pillow-10.2.0
Attempting uninstall: numpy
Found existing installation: numpy 1.26.4
Uninstalling numpy-1.26.4:
Successfully uninstalled numpy-1.26.4
Successfully installed GitPython-3.1.32 Pillow-9.5.0 PyWavelets-1.8.0 accelerate-0.21.0 aenum-3.1.16 aiofiles-23.2.1 aiohappyeyeballs-2.6.1 aiohttp-3.12.15 aiosignal-1.4.0 altair-5.5.0 antlr4-python3-runtime-4.9.3 anyio-3.7.1 async-timeout-5.0.1 blendmodes-2022 clean-fid-0.1.35 contourpy-1.3.2 cycler-0.12.1 deprecation-2.1.0 diskcache-5.6.3 einops-0.4.1 facexlib-0.3.0 fastapi-0.94.0 ffmpy-0.6.1 filterpy-1.4.5 fonttools-4.60.1 frozenlist-1.7.0 ftfy-6.3.1 gitdb-4.0.12 gradio-3.41.2 gradio-client-0.5.0 h11-0.12.0 hf-xet-1.1.10 httpcore-0.15.0 httpx-0.24.1 huggingface-hub-0.35.3 imageio-2.37.0 importlib-resources-6.5.2 inflection-0.5.1 jsonmerge-1.8.0 kiwisolver-1.4.9 kornia-0.6.7 lark-1.1.2 lazy_loader-0.4 lightning-utilities-0.15.2 llvmlite-0.45.1 matplotlib-3.10.6 multidict-6.6.4 narwhals-2.6.0 numba-0.62.1 numpy-1.26.2 omegaconf-2.2.3 open-clip-torch-2.20.0 opencv-python-4.11.0.86 orjson-3.11.3 pandas-2.3.3 piexif-1.1.3 pillow-avif-plugin-1.4.3 propcache-0.3.2 protobuf-3.20.3 psutil-5.9.5 pydantic-1.10.24 pydub-0.25.1 pyparsing-3.2.5 python-dateutil-2.9.0.post0 python-multipart-0.0.20 pytorch_lightning-1.9.4 regex-2025.9.18 resize-right-0.0.2 safetensors-0.4.2 scikit-image-0.21.0 scipy-1.15.3 semantic-version-2.10.0 sentencepiece-0.2.1 setuptools-69.5.1 smmap-5.0.2 sniffio-1.3.1 spandrel-0.1.6 starlette-0.26.1 tifffile-2025.5.10 timm-1.0.20 tokenizers-0.13.3 tomesd-0.1.3 torchdiffeq-0.2.3 torchmetrics-1.8.2 torchsde-0.2.6 trampoline-0.1.2 transformers-4.30.2 tzdata-2025.2 uvicorn-0.37.0 websockets-11.0.3 yarl-1.20.1
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
--> 1371fa77fa72
[2/2] STEP 6/20: ENV ROOT=/stable-diffusion-webui
--> 20585d899621
[2/2] STEP 7/20: COPY --from=download /repositories/ ${ROOT}/repositories/
--> 2d5ceb2cafd6
[2/2] STEP 8/20: RUN mkdir ${ROOT}/interrogate && cp ${ROOT}/repositories/clip-interrogator/clip_interrogator/data/* ${ROOT}/interrogate
--> 07fe4478d333
[2/2] STEP 9/20: RUN --mount=type=cache,target=/root/.cache/pip pip install pyngrok xformers==0.0.26.post1 git+https://github.com/TencentARC/GFPGAN.git@8d2447a2d918f8eba5a4a01463fd48e45126a379 git+https://github.com/openai/CLIP.git@d50d76daa670286dd6cacf3bcd80b5e4823fc8e1 git+https://github.com/mlfoundations/open_clip.git@v2.20.0
Collecting git+https://github.com/TencentARC/GFPGAN.git@8d2447a2d918f8eba5a4a01463fd48e45126a379
Cloning https://github.com/TencentARC/GFPGAN.git (to revision 8d2447a2d918f8eba5a4a01463fd48e45126a379) to /tmp/pip-req-build-tgequefq
Running command git clone --filter=blob:none --quiet https://github.com/TencentARC/GFPGAN.git /tmp/pip-req-build-tgequefq
Running command git rev-parse -q --verify 'sha^8d2447a2d918f8eba5a4a01463fd48e45126a379'
Running command git fetch -q https://github.com/TencentARC/GFPGAN.git 8d2447a2d918f8eba5a4a01463fd48e45126a379
Running command git checkout -q 8d2447a2d918f8eba5a4a01463fd48e45126a379
Resolved https://github.com/TencentARC/GFPGAN.git to commit 8d2447a2d918f8eba5a4a01463fd48e45126a379
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting git+https://github.com/openai/CLIP.git@d50d76daa670286dd6cacf3bcd80b5e4823fc8e1
Cloning https://github.com/openai/CLIP.git (to revision d50d76daa670286dd6cacf3bcd80b5e4823fc8e1) to /tmp/pip-req-build-rhogfc19
Running command git clone --filter=blob:none --quiet https://github.com/openai/CLIP.git /tmp/pip-req-build-rhogfc19
Running command git rev-parse -q --verify 'sha^d50d76daa670286dd6cacf3bcd80b5e4823fc8e1'
Running command git fetch -q https://github.com/openai/CLIP.git d50d76daa670286dd6cacf3bcd80b5e4823fc8e1
Running command git checkout -q d50d76daa670286dd6cacf3bcd80b5e4823fc8e1
Resolved https://github.com/openai/CLIP.git to commit d50d76daa670286dd6cacf3bcd80b5e4823fc8e1
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting git+https://github.com/mlfoundations/open_clip.git@v2.20.0
Cloning https://github.com/mlfoundations/open_clip.git (to revision v2.20.0) to /tmp/pip-req-build-54mw460n
Running command git clone --filter=blob:none --quiet https://github.com/mlfoundations/open_clip.git /tmp/pip-req-build-54mw460n
Running command git checkout -q a09d519f91358187d73debacfc2db5f154291d40
Resolved https://github.com/mlfoundations/open_clip.git to commit a09d519f91358187d73debacfc2db5f154291d40
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting pyngrok
Downloading pyngrok-7.4.0-py3-none-any.whl.metadata (8.1 kB)
Collecting xformers==0.0.26.post1
Downloading xformers-0.0.26.post1-cp310-cp310-manylinux2014_x86_64.whl.metadata (1.0 kB)
Requirement already satisfied: numpy in /opt/conda/lib/python3.10/site-packages (from xformers==0.0.26.post1) (1.26.2)
Requirement already satisfied: torch==2.3.0 in /opt/conda/lib/python3.10/site-packages (from xformers==0.0.26.post1) (2.3.0)
Requirement already satisfied: filelock in /opt/conda/lib/python3.10/site-packages (from torch==2.3.0->xformers==0.0.26.post1) (3.13.1)
Requirement already satisfied: typing-extensions>=4.8.0 in /opt/conda/lib/python3.10/site-packages (from torch==2.3.0->xformers==0.0.26.post1) (4.11.0)
Requirement already satisfied: sympy in /opt/conda/lib/python3.10/site-packages (from torch==2.3.0->xformers==0.0.26.post1) (1.12)
Requirement already satisfied: networkx in /opt/conda/lib/python3.10/site-packages (from torch==2.3.0->xformers==0.0.26.post1) (3.1)
Requirement already satisfied: jinja2 in /opt/conda/lib/python3.10/site-packages (from torch==2.3.0->xformers==0.0.26.post1) (3.1.3)
Requirement already satisfied: fsspec in /opt/conda/lib/python3.10/site-packages (from torch==2.3.0->xformers==0.0.26.post1) (2024.3.1)
Requirement already satisfied: PyYAML>=5.1 in /opt/conda/lib/python3.10/site-packages (from pyngrok) (6.0.1)
Collecting basicsr>=1.4.2 (from gfpgan==1.3.5)
Downloading basicsr-1.4.2.tar.gz (172 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 172.5/172.5 kB 9.0 MB/s eta 0:00:00
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Requirement already satisfied: facexlib>=0.2.5 in /opt/conda/lib/python3.10/site-packages (from gfpgan==1.3.5) (0.3.0)
Collecting lmdb (from gfpgan==1.3.5)
Downloading lmdb-1.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.3 kB)
Requirement already satisfied: opencv-python in /opt/conda/lib/python3.10/site-packages (from gfpgan==1.3.5) (4.11.0.86)
Requirement already satisfied: scipy in /opt/conda/lib/python3.10/site-packages (from gfpgan==1.3.5) (1.15.3)
Collecting tb-nightly (from gfpgan==1.3.5)
Downloading tb_nightly-2.21.0a20250926-py3-none-any.whl.metadata (1.9 kB)
Requirement already satisfied: torchvision in /opt/conda/lib/python3.10/site-packages (from gfpgan==1.3.5) (0.18.0)
Requirement already satisfied: tqdm in /opt/conda/lib/python3.10/site-packages (from gfpgan==1.3.5) (4.65.0)
Collecting yapf (from gfpgan==1.3.5)
Downloading yapf-0.43.0-py3-none-any.whl.metadata (46 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.8/46.8 kB 1.1 MB/s eta 0:00:00
Requirement already satisfied: ftfy in /opt/conda/lib/python3.10/site-packages (from clip==1.0) (6.3.1)
Requirement already satisfied: regex in /opt/conda/lib/python3.10/site-packages (from clip==1.0) (2025.9.18)
Requirement already satisfied: huggingface_hub in /opt/conda/lib/python3.10/site-packages (from open_clip_torch==2.20.0) (0.35.3)
Requirement already satisfied: sentencepiece in /opt/conda/lib/python3.10/site-packages (from open_clip_torch==2.20.0) (0.2.1)
Requirement already satisfied: protobuf<4 in /opt/conda/lib/python3.10/site-packages (from open_clip_torch==2.20.0) (3.20.3)
Requirement already satisfied: timm in /opt/conda/lib/python3.10/site-packages (from open_clip_torch==2.20.0) (1.0.20)
Collecting addict (from basicsr>=1.4.2->gfpgan==1.3.5)
Downloading addict-2.4.0-py3-none-any.whl.metadata (1.0 kB)
Collecting future (from basicsr>=1.4.2->gfpgan==1.3.5)
Downloading future-1.0.0-py3-none-any.whl.metadata (4.0 kB)
Requirement already satisfied: Pillow in /opt/conda/lib/python3.10/site-packages (from basicsr>=1.4.2->gfpgan==1.3.5) (9.5.0)
Requirement already satisfied: requests in /opt/conda/lib/python3.10/site-packages (from basicsr>=1.4.2->gfpgan==1.3.5) (2.31.0)
Requirement already satisfied: scikit-image in /opt/conda/lib/python3.10/site-packages (from basicsr>=1.4.2->gfpgan==1.3.5) (0.21.0)
Requirement already satisfied: filterpy in /opt/conda/lib/python3.10/site-packages (from facexlib>=0.2.5->gfpgan==1.3.5) (1.4.5)
Requirement already satisfied: numba in /opt/conda/lib/python3.10/site-packages (from facexlib>=0.2.5->gfpgan==1.3.5) (0.62.1)
Requirement already satisfied: wcwidth in /opt/conda/lib/python3.10/site-packages (from ftfy->clip==1.0) (0.2.5)
Requirement already satisfied: packaging>=20.9 in /opt/conda/lib/python3.10/site-packages (from huggingface_hub->open_clip_torch==2.20.0) (23.2)
Requirement already satisfied: hf-xet<2.0.0,>=1.1.3 in /opt/conda/lib/python3.10/site-packages (from huggingface_hub->open_clip_torch==2.20.0) (1.1.10)
Collecting absl-py>=0.4 (from tb-nightly->gfpgan==1.3.5)
Downloading absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB)
Collecting grpcio>=1.48.2 (from tb-nightly->gfpgan==1.3.5)
Downloading grpcio-1.75.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (3.7 kB)
Collecting markdown>=2.6.8 (from tb-nightly->gfpgan==1.3.5)
Downloading markdown-3.9-py3-none-any.whl.metadata (5.1 kB)
Requirement already satisfied: setuptools>=41.0.0 in /opt/conda/lib/python3.10/site-packages (from tb-nightly->gfpgan==1.3.5) (69.5.1)
Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tb-nightly->gfpgan==1.3.5)
Downloading tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl.metadata (1.1 kB)
Collecting werkzeug>=1.0.1 (from tb-nightly->gfpgan==1.3.5)
Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB)
Requirement already satisfied: safetensors in /opt/conda/lib/python3.10/site-packages (from timm->open_clip_torch==2.20.0) (0.4.2)
Requirement already satisfied: platformdirs>=3.5.1 in /opt/conda/lib/python3.10/site-packages (from yapf->gfpgan==1.3.5) (3.10.0)
Requirement already satisfied: tomli>=2.0.1 in /opt/conda/lib/python3.10/site-packages (from yapf->gfpgan==1.3.5) (2.0.1)
Collecting typing-extensions>=4.8.0 (from torch==2.3.0->xformers==0.0.26.post1)
Downloading typing_extensions-4.15.0-py3-none-any.whl.metadata (3.3 kB)
Requirement already satisfied: MarkupSafe>=2.1.1 in /opt/conda/lib/python3.10/site-packages (from werkzeug>=1.0.1->tb-nightly->gfpgan==1.3.5) (2.1.3)
Requirement already satisfied: matplotlib in /opt/conda/lib/python3.10/site-packages (from filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (3.10.6)
Requirement already satisfied: llvmlite<0.46,>=0.45.0dev0 in /opt/conda/lib/python3.10/site-packages (from numba->facexlib>=0.2.5->gfpgan==1.3.5) (0.45.1)
Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan==1.3.5) (2.0.4)
Requirement already satisfied: idna<4,>=2.5 in /opt/conda/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan==1.3.5) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan==1.3.5) (2.1.0)
Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/lib/python3.10/site-packages (from requests->basicsr>=1.4.2->gfpgan==1.3.5) (2024.2.2)
Requirement already satisfied: imageio>=2.27 in /opt/conda/lib/python3.10/site-packages (from scikit-image->basicsr>=1.4.2->gfpgan==1.3.5) (2.37.0)
Requirement already satisfied: tifffile>=2022.8.12 in /opt/conda/lib/python3.10/site-packages (from scikit-image->basicsr>=1.4.2->gfpgan==1.3.5) (2025.5.10)
Requirement already satisfied: PyWavelets>=1.1.1 in /opt/conda/lib/python3.10/site-packages (from scikit-image->basicsr>=1.4.2->gfpgan==1.3.5) (1.8.0)
Requirement already satisfied: lazy_loader>=0.2 in /opt/conda/lib/python3.10/site-packages (from scikit-image->basicsr>=1.4.2->gfpgan==1.3.5) (0.4)
Requirement already satisfied: mpmath>=0.19 in /opt/conda/lib/python3.10/site-packages (from sympy->torch==2.3.0->xformers==0.0.26.post1) (1.3.0)
Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/lib/python3.10/site-packages (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (1.3.2)
Requirement already satisfied: cycler>=0.10 in /opt/conda/lib/python3.10/site-packages (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (0.12.1)
Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/lib/python3.10/site-packages (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (4.60.1)
Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/lib/python3.10/site-packages (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (1.4.9)
Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/lib/python3.10/site-packages (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (3.2.5)
Requirement already satisfied: python-dateutil>=2.7 in /opt/conda/lib/python3.10/site-packages (from matplotlib->filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (2.9.0.post0)
Requirement already satisfied: six>=1.5 in /opt/conda/lib/python3.10/site-packages (from python-dateutil>=2.7->matplotlib->filterpy->facexlib>=0.2.5->gfpgan==1.3.5) (1.16.0)
Downloading xformers-0.0.26.post1-cp310-cp310-manylinux2014_x86_64.whl (222.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 222.7/222.7 MB 6.7 MB/s eta 0:00:00
Downloading pyngrok-7.4.0-py3-none-any.whl (25 kB)
Downloading lmdb-1.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (296 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 296.6/296.6 kB 485.8 kB/s eta 0:00:00
Downloading tb_nightly-2.21.0a20250926-py3-none-any.whl (5.5 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/5.5 MB 4.9 MB/s eta 0:00:00
Downloading yapf-0.43.0-py3-none-any.whl (256 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 256.2/256.2 kB 1.2 MB/s eta 0:00:00
Downloading absl_py-2.3.1-py3-none-any.whl (135 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 135.8/135.8 kB 301.8 kB/s eta 0:00:00
Downloading grpcio-1.75.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (6.5 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.5/6.5 MB 7.8 MB/s eta 0:00:00
Downloading markdown-3.9-py3-none-any.whl (107 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 107.4/107.4 kB 8.5 MB/s eta 0:00:00
Downloading tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl (6.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.6/6.6 MB 7.6 MB/s eta 0:00:00
Downloading typing_extensions-4.15.0-py3-none-any.whl (44 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.6/44.6 kB 4.3 MB/s eta 0:00:00
Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.5/224.5 kB 1.0 MB/s eta 0:00:00
Downloading addict-2.4.0-py3-none-any.whl (3.8 kB)
Downloading future-1.0.0-py3-none-any.whl (491 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 491.3/491.3 kB 2.4 MB/s eta 0:00:00
Building wheels for collected packages: gfpgan, clip, basicsr
Building wheel for gfpgan (setup.py): started
Building wheel for gfpgan (setup.py): finished with status 'done'
Created wheel for gfpgan: filename=gfpgan-1.3.5-py3-none-any.whl size=47754 sha256=2eba57946946049b9dabe2313ac5bc3d95fe18712df09d30a7ecb5b0a8851d4a
Stored in directory: /root/.cache/pip/wheels/a7/79/e9/6dd2a17214c1e33aaee58997f824dfa01f2d8c45d1b5a6baae
Building wheel for clip (setup.py): started
Building wheel for clip (setup.py): finished with status 'done'
Created wheel for clip: filename=clip-1.0-py3-none-any.whl size=1369369 sha256=c41e44fd4480df3e06d1a23a157ebb42df3c0efc37f1fe0e86d61cbf993737d7
Stored in directory: /root/.cache/pip/wheels/56/93/51/4bad85c7f917afc40abc2efdf783bfc4944cbb3f535c54da76
Building wheel for basicsr (setup.py): started
Building wheel for basicsr (setup.py): finished with status 'done'
Created wheel for basicsr: filename=basicsr-1.4.2-py3-none-any.whl size=214817 sha256=8967876a6a695d98c9d08798429a5ea3ab5105da769fa1eaf74c499bf7093d8f
Stored in directory: /root/.cache/pip/wheels/38/83/99/2d8437cc652a01af27df5ff037a4075e95b52d67705c5f30ca
Successfully built gfpgan clip basicsr
Installing collected packages: lmdb, addict, yapf, werkzeug, typing-extensions, tensorboard-data-server, pyngrok, markdown, future, absl-py, grpcio, xformers, tb-nightly, clip, basicsr, gfpgan
Attempting uninstall: typing-extensions
Found existing installation: typing_extensions 4.11.0
Uninstalling typing_extensions-4.11.0:
Successfully uninstalled typing_extensions-4.11.0
Successfully installed absl-py-2.3.1 addict-2.4.0 basicsr-1.4.2 clip-1.0 future-1.0.0 gfpgan-1.3.5 grpcio-1.75.1 lmdb-1.7.3 markdown-3.9 pyngrok-7.4.0 tb-nightly-2.21.0a20250926 tensorboard-data-server-0.7.2 typing-extensions-4.15.0 werkzeug-3.1.3 xformers-0.0.26.post1 yapf-0.43.0
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
--> 5c980a7c0a1e
[2/2] STEP 10/20: RUN apt-get -y install libgoogle-perftools-dev && apt-get clean
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
libgoogle-perftools4 liblzma-dev libtcmalloc-minimal4 libunwind-dev
libunwind8
Suggested packages:
liblzma-doc
The following NEW packages will be installed:
libgoogle-perftools-dev libgoogle-perftools4 liblzma-dev
libtcmalloc-minimal4 libunwind-dev libunwind8
0 upgraded, 6 newly installed, 0 to remove and 31 not upgraded.
Need to get 2876 kB of archives.
After this operation, 12.1 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtcmalloc-minimal4 amd64 2.9.1-0ubuntu3 [98.2 kB]
Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libunwind8 amd64 1.3.2-2build2.1 [54.5 kB]
Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgoogle-perftools4 amd64 2.9.1-0ubuntu3 [212 kB]
Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblzma-dev amd64 5.2.5-2ubuntu1 [159 kB]
Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libunwind-dev amd64 1.3.2-2build2.1 [1883 kB]
Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgoogle-perftools-dev amd64 2.9.1-0ubuntu3 [470 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 2876 kB in 9s (303 kB/s)
Selecting previously unselected package libtcmalloc-minimal4:amd64.
(Reading database ... 18336 files and directories currently installed.)
Preparing to unpack .../0-libtcmalloc-minimal4_2.9.1-0ubuntu3_amd64.deb ...
Unpacking libtcmalloc-minimal4:amd64 (2.9.1-0ubuntu3) ...
Selecting previously unselected package libunwind8:amd64.
Preparing to unpack .../1-libunwind8_1.3.2-2build2.1_amd64.deb ...
Unpacking libunwind8:amd64 (1.3.2-2build2.1) ...
Selecting previously unselected package libgoogle-perftools4:amd64.
Preparing to unpack .../2-libgoogle-perftools4_2.9.1-0ubuntu3_amd64.deb ...
Unpacking libgoogle-perftools4:amd64 (2.9.1-0ubuntu3) ...
Selecting previously unselected package liblzma-dev:amd64.
Preparing to unpack .../3-liblzma-dev_5.2.5-2ubuntu1_amd64.deb ...
Unpacking liblzma-dev:amd64 (5.2.5-2ubuntu1) ...
Selecting previously unselected package libunwind-dev:amd64.
Preparing to unpack .../4-libunwind-dev_1.3.2-2build2.1_amd64.deb ...
Unpacking libunwind-dev:amd64 (1.3.2-2build2.1) ...
Selecting previously unselected package libgoogle-perftools-dev:amd64.
Preparing to unpack .../5-libgoogle-perftools-dev_2.9.1-0ubuntu3_amd64.deb ...
Unpacking libgoogle-perftools-dev:amd64 (2.9.1-0ubuntu3) ...
Setting up libtcmalloc-minimal4:amd64 (2.9.1-0ubuntu3) ...
Setting up libunwind8:amd64 (1.3.2-2build2.1) ...
Setting up liblzma-dev:amd64 (5.2.5-2ubuntu1) ...
Setting up libgoogle-perftools4:amd64 (2.9.1-0ubuntu3) ...
Setting up libunwind-dev:amd64 (1.3.2-2build2.1) ...
Setting up libgoogle-perftools-dev:amd64 (2.9.1-0ubuntu3) ...
Processing triggers for libc-bin (2.35-0ubuntu3.6) ...
--> 02dd8a3477f1
[2/2] STEP 11/20: ENV LD_PRELOAD=libtcmalloc.so
--> ad3be1f2d7b2
[2/2] STEP 12/20: COPY . /docker
--> c215e93aad1c
[2/2] STEP 13/20: RUN chmod +x /docker/entrypoint.sh
--> acfd6b2a4c84
[2/2] STEP 14/20: RUN sed -i 's/in_app_dir = .*/in_app_dir = True/g' /opt/conda/lib/python3.10/site-packages/gradio/routes.py && git config --global --add safe.directory '*'
--> bd27d68aae7a
[2/2] STEP 15/20: WORKDIR ${ROOT}
--> 6dba8a589e3b
[2/2] STEP 16/20: ENV NVIDIA_VISIBLE_DEVICES=all
--> 018dbbb3f89d
[2/2] STEP 17/20: ENV CLI_ARGS="--medvram --xformers --gradio-queue"
--> 709797d93d64
[2/2] STEP 18/20: EXPOSE 7860
--> 39c00556e3aa
[2/2] STEP 19/20: ENTRYPOINT ["/docker/entrypoint.sh"]
--> 272e0dcaf838
[2/2] STEP 20/20: CMD python -u webui.py --listen --port 7860 ${CLI_ARGS}
[2/2] COMMIT sd-auto:78
--> e72073e91f79
Successfully tagged localhost/sd-auto:78
e72073e91f79d952b6cf87c402f258588035fcff4b78439f4c9555ff12d599b5
(.venv) H:\PythonProjects1\stable-diffusion-webui-docker>
2. 运行日志
Microsoft Windows [Version 10.0.27954.1]
(c) Microsoft Corporation. All rights reserved.
(.venv) H:\PythonProjects1\stable-diffusion-webui-docker>podman-compose --profile auto down
webui-docker_auto_1
webui-docker_auto_1
6a546fa65fae0834fe6412acdceaf7cd88fc1c558c2670f5378b49fecddc9866
webui-docker_default
(.venv) H:\PythonProjects1\stable-diffusion-webui-docker>podman-compose --profile auto up -d
994ae6405dfe7dbd2efcaf43552810bbd500e9a92601fca035c5791a3b208ee8
1bc393cf90f9c3fc09868806b969c280b056ff784b091efdad8595c140cb0430
webui-docker_auto_1
(.venv) H:\PythonProjects1\stable-diffusion-webui-docker>podman logs -f webui-docker_auto_1
/stable-diffusion-webui
total 772K
drwxr-xr-x 1 root root 4.0K Oct 4 19:33 .
dr-xr-xr-x 1 root root 4.0K Oct 6 14:01 ..
-rw-r--r-- 1 root root 48 Oct 4 19:33 .eslintignore
-rw-r--r-- 1 root root 3.4K Oct 4 19:33 .eslintrc.js
drwxr-xr-x 8 root root 4.0K Oct 4 19:33 .git
-rw-r--r-- 1 root root 55 Oct 4 19:33 .git-blame-ignore-revs
drwxr-xr-x 4 root root 4.0K Oct 4 19:33 .github
-rw-r--r-- 1 root root 521 Oct 4 19:33 .gitignore
-rw-r--r-- 1 root root 119 Oct 4 19:33 .pylintrc
-rw-r--r-- 1 root root 84K Oct 4 19:33 CHANGELOG.md
-rw-r--r-- 1 root root 243 Oct 4 19:33 CITATION.cff
-rw-r--r-- 1 root root 657 Oct 4 19:33 CODEOWNERS
-rw-r--r-- 1 root root 35K Oct 4 19:33 LICENSE.txt
-rw-r--r-- 1 root root 13K Oct 4 19:33 README.md
-rw-r--r-- 1 root root 146 Oct 4 19:33 _typos.toml
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 configs
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 embeddings
-rw-r--r-- 1 root root 167 Oct 4 19:33 environment-wsl2.yaml
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 extensions
drwxr-xr-x 13 root root 4.0K Oct 4 19:33 extensions-builtin
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 html
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 interrogate
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 javascript
-rw-r--r-- 1 root root 1.3K Oct 4 19:33 launch.py
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 localizations
drwxr-xr-x 7 root root 4.0K Oct 4 19:33 models
drwxr-xr-x 7 root root 4.0K Oct 4 19:33 modules
-rw-r--r-- 1 root root 185 Oct 4 19:33 package.json
-rw-r--r-- 1 root root 841 Oct 4 19:33 pyproject.toml
drwxr-xr-x 8 root root 4.0K Oct 4 19:33 repositories
-rw-r--r-- 1 root root 49 Oct 4 19:33 requirements-test.txt
-rw-r--r-- 1 root root 371 Oct 4 19:33 requirements.txt
-rw-r--r-- 1 root root 42 Oct 4 19:33 requirements_npu.txt
-rw-r--r-- 1 root root 645 Oct 4 19:33 requirements_versions.txt
-rw-r--r-- 1 root root 411K Oct 4 19:33 screenshot.png
-rw-r--r-- 1 root root 6.1K Oct 4 19:33 script.js
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 scripts
-rw-r--r-- 1 root root 43K Oct 4 19:33 style.css
drwxr-xr-x 4 root root 4.0K Oct 4 19:33 test
drwxr-xr-x 2 root root 4.0K Oct 4 19:33 textual_inversion_templates
-rw-r--r-- 1 root root 670 Oct 4 19:33 webui-macos-env.sh
-rw-r--r-- 1 root root 84 Oct 4 19:33 webui-user.bat
-rw-r--r-- 1 root root 1.4K Oct 4 19:33 webui-user.sh
-rw-r--r-- 1 root root 2.3K Oct 4 19:33 webui.bat
-rw-r--r-- 1 root root 5.3K Oct 4 19:33 webui.py
-rwxr-xr-x 1 root root 11K Oct 4 19:33 webui.sh
./
./
Mounted .cache
Mounted config_states
mkdir: created directory '/stable-diffusion-webui/repositories/CodeFormer'
mkdir: created directory '/stable-diffusion-webui/repositories/CodeFormer/weights'
Mounted .cache
Mounted embeddings
Mounted config.json
Mounted models
Mounted styles.csv
Mounted ui-config.json
Mounted extensions
Installing extension dependencies (if any)
/opt/conda/lib/python3.10/site-packages/timm/models/layers/__init__.py:48: FutureWarning: Importing from timm.models.layers is deprecated, please import via timm.layers
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.layers", FutureWarning)
Checkpoint v1-5-pruned-emaonly.safetensors [6ce0161689] not found; loading fallback v1-5-pruned-emaonly.safetensors
Calculating sha256 for /stable-diffusion-webui/models/Stable-diffusion/v1-5-pruned-emaonly.safetensors: Running on local URL: http://0.0.0.0:7860
To create a public link, set `share=True` in `launch()`.
Startup time: 7.1s (import torch: 3.6s, import gradio: 1.0s, setup paths: 1.0s, initialize shared: 0.3s, other imports: 0.3s, load scripts: 0.2s, create ui: 0.4s).
6ce0161689b3853acaa03779ec93eafe75a02f4ced659bee03f50797806fa2fa
Loading weights [6ce0161689] from /stable-diffusion-webui/models/Stable-diffusion/v1-5-pruned-emaonly.safetensors
Creating model from config: /stable-diffusion-webui/configs/v1-inference.yaml
/opt/conda/lib/python3.10/site-packages/huggingface_hub/file_download.py:945: FutureWarning: `resume_download` is deprecated and will be removed in version 1.0.0. Downloads always resume when possible. If you want to force a new download, use `force_download=True`.
warnings.warn(
Applying attention optimization: xformers... done.
Model loaded in 33.7s (calculate hash: 20.0s, load weights from disk: 0.2s, create model: 0.3s, apply weights to model: 12.6s, apply dtype to VAE: 0.2s, calculate empty prompt: 0.3s).
100% 20/20 [00:01<00:00, 12.62it/s]
Total progress: 100% 20/20 [00:01<00:00, 15.83it/s]
Applying attention optimization: xformers... done.]
Loading weights [6ce0161689] from /stable-diffusion-webui/models/Stable-diffusion/v1-5-pruned-emaonly.safetensors
Applying attention optimization: xformers... done.
Weights loaded in 10.7s (calculate hash: 1.7s, load weights from disk: 0.3s, apply weights to model: 8.0s, move model to device: 0.7s).
Restarting UI...
Closing server running on port: 7860
Running on local URL: http://0.0.0.0:7860
To create a public link, set `share=True` in `launch()`.
Startup time: 0.9s (load scripts: 0.2s, create ui: 0.5s).
100% 20/20 [00:01<00:00, 13.70it/s]
Total progress: 100% 20/20 [00:01<00:00, 16.54it/s]
Total progress: 100% 20/20 [00:01<00:00, 18.70it/s]
3. 命令说明
podman-compose --profile auto build --no-cache
podman-compose --profile auto down
podman-compose --profile auto up -d
podman logs -f webui-docker_auto_1
这几条命令是基于 podman-compose
(Podman 对应的容器编排工具)操作 stable-diffusion-webui-docker
项目的核心指令,分别对应 构建镜像、清理旧容器、启动新容器、查看运行日志 四个关键环节,作用和执行逻辑如下:
1. podman-compose --profile auto build --no-cache
核心作用:基于配置文件构建(或重建)Stable Diffusion 的 GPU 版镜像
--profile auto
:指定使用docker-compose.yml
中定义的auto
配置文件(对应项目中的AUTOMATIC1111
版本 WebUI,是支持 GPU 加速的核心配置,与auto-cpu
(CPU 版)区分)。build
:触发镜像构建流程,会读取项目中services/AUTOMATIC1111
目录下的Dockerfile
,自动执行以下操作:- 基于指定的 CUDA 基础镜像(如
nvidia/cuda:13.0.1-cudnn-devel-ubuntu24.04
)搭建环境; - 安装 Python、PyTorch、FFmpeg 等依赖工具;
- 下载 Stable Diffusion 核心代码和默认模型。
- 基于指定的 CUDA 基础镜像(如
--no-cache
:不使用之前的构建缓存 ,强制从 0 开始重新构建。- 适用场景:修改了
Dockerfile
、依赖版本(如 CUDA 版本)或项目配置后,避免旧缓存导致新配置不生效(首次构建或更新环境时建议必加)。
- 适用场景:修改了
2. podman-compose --profile auto down
核心作用:停止并删除当前运行的 Stable Diffusion 容器及关联资源
down
:是podman-compose
的 "清理指令",会执行两步操作:- 停止所有属于
auto
配置的运行中容器(即webui-docker_auto_1
); - 删除已停止的容器(默认不删除镜像和挂载的卷,仅清理容器实例)。
- 停止所有属于
- 适用场景:
- 需重启容器以加载新配置(如修改了
docker-compose.yml
中的 GPU 挂载参数); - 容器运行异常(如卡死、GPU 识别失败),需 "彻底重启" 时,先执行此命令清理旧容器。
- 需重启容器以加载新配置(如修改了
3. podman-compose --profile auto up -d
核心作用:基于构建好的镜像启动 Stable Diffusion 容器(后台运行)
up
:启动容器的核心指令,会自动检查:- 若
auto
对应的镜像未构建,会先触发构建(但建议提前手动执行build
确保镜像最新); - 若镜像已存在,直接基于镜像创建并启动容器。
- 若
-d
:detach
的缩写,意为 "后台运行容器",启动后不会占用当前终端(若不加-d
,终端会被容器日志占用,关闭终端则容器停止)。- 关键隐式操作:
- 自动映射配置文件中定义的端口(如
7860:7860
,对应 WebUI 的访问端口); - 挂载数据卷(如
./data:/data
存储模型、./output:/output
存储生成的图片); - 加载
auto
配置中定义的 GPU 挂载参数(如devices: ["nvidia.com/gpu=all"]
),确保容器能识别 GPU。
- 自动映射配置文件中定义的端口(如
4. podman logs -f webui-docker_auto_1
核心作用:实时查看 Stable Diffusion 容器的运行日志,排查问题
logs
:查看容器的日志输出(包括启动过程、错误信息、WebUI 运行状态等)。-f
:follow
的缩写,意为 "实时跟踪日志",日志会持续输出到当前终端(按Ctrl+C
可退出跟踪)。webui-docker_auto_1
:容器的默认名称(由podman-compose
自动生成,格式为「项目名_配置名_序号」),可通过podman ps
命令查看实际容器名。- 日志关键信息:
- 成功标志:日志中出现
Running on local URL: http://0.0.0.0:7860
,说明 WebUI 启动正常; - GPU 识别:若出现
CUDA available: True
或GPU: NVIDIA GeForce RTX 3090
,说明 GPU 已正常加载; - 错误排查:若出现
CUDA error
、out of memory
(显存不足)、model download failed
(模型下载失败)等,可通过日志定位问题(如需配置HF_ENDPOINT
加速模型下载)。
- 成功标志:日志中出现
命令执行逻辑(典型场景:更新并重启 Stable Diffusion)
# 1. 先构建最新镜像(不使用缓存,确保依赖和配置更新)
podman-compose --profile auto build --no-cache
# 2. 停止并删除旧容器(避免旧实例占用资源)
podman-compose --profile auto down
# 3. 后台启动新容器(加载最新镜像和配置)
podman-compose --profile auto up -d
# 4. 实时查看日志,确认启动成功且GPU识别正常
podman logs -f webui-docker_auto_1