Spaces:
Runtime error
Runtime error
Space: prebuilt llama-cpp-python wheel, minimal Dockerfile
Browse files- Dockerfile +3 -9
- README.md +13 -1
- check_space_logs.py +9 -0
- parse_logs.py +14 -0
- requirements.txt +3 -0
- space_logs.txt +0 -0
- space_logs_clean.txt +954 -0
Dockerfile
CHANGED
|
@@ -2,22 +2,16 @@ FROM python:3.11-slim
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
# Install
|
| 6 |
RUN apt-get update && apt-get install -y \
|
| 7 |
-
build-essential \
|
| 8 |
-
cmake \
|
| 9 |
git \
|
| 10 |
-
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
-
# Copy requirements and install Python deps
|
| 14 |
COPY requirements.txt .
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
|
| 17 |
-
# Install training deps if needed (commented by default)
|
| 18 |
-
# COPY requirements-train.txt .
|
| 19 |
-
# RUN pip install --no-cache-dir -r requirements-train.txt
|
| 20 |
-
|
| 21 |
# Copy application code
|
| 22 |
COPY . .
|
| 23 |
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
+
# Install git for hf_hub_download and curl for health checks
|
| 6 |
RUN apt-get update && apt-get install -y \
|
|
|
|
|
|
|
| 7 |
git \
|
| 8 |
+
curl \
|
| 9 |
&& rm -rf /var/lib/apt/lists/*
|
| 10 |
|
| 11 |
+
# Copy requirements and install Python deps (uses prebuilt llama-cpp-python wheel)
|
| 12 |
COPY requirements.txt .
|
| 13 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
# Copy application code
|
| 16 |
COPY . .
|
| 17 |
|
README.md
CHANGED
|
@@ -1 +1,13 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Retro Alpha
|
| 3 |
+
emoji: 📺
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 7860
|
| 8 |
+
pinned: false
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Retro Alpha
|
| 12 |
+
|
| 13 |
+
A 90s CRT-style Indian stock-market survival game powered by a fine-tuned Nemotron 3 Nano 4B model running locally via llama.cpp.
|
check_space_logs.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import requests
|
| 3 |
+
|
| 4 |
+
url = "https://huggingface.co/api/spaces/sankalphs/retro-alpha/logs/build"
|
| 5 |
+
r = requests.get(url, headers={"Authorization": f"Bearer {os.environ['HF_TOKEN']}"})
|
| 6 |
+
print("status:", r.status_code)
|
| 7 |
+
with open("space_logs.txt", "w", encoding="utf-8") as f:
|
| 8 |
+
f.write(r.text)
|
| 9 |
+
print("written, len:", len(r.text))
|
parse_logs.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import json
|
| 2 |
+
with open("space_logs.txt", "r", encoding="utf-8") as f:
|
| 3 |
+
lines = f.readlines()
|
| 4 |
+
out_lines = []
|
| 5 |
+
for line in lines:
|
| 6 |
+
if line.startswith("data: "):
|
| 7 |
+
try:
|
| 8 |
+
d = json.loads(line[6:])["data"]
|
| 9 |
+
out_lines.append(d)
|
| 10 |
+
except Exception:
|
| 11 |
+
out_lines.append(line.strip())
|
| 12 |
+
with open("space_logs_clean.txt", "w", encoding="utf-8") as f:
|
| 13 |
+
f.write("\n".join(out_lines))
|
| 14 |
+
print("Total cleaned lines:", len(out_lines))
|
requirements.txt
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
# Runtime dependencies for Retro Alpha Gradio Space
|
|
|
|
|
|
|
| 2 |
gradio>=5.0.0
|
| 3 |
fastapi>=0.109.0
|
| 4 |
uvicorn>=0.27.0
|
|
@@ -6,3 +8,4 @@ llama-cpp-python>=0.2.20
|
|
| 6 |
python-dotenv>=1.0.0
|
| 7 |
pydantic>=2.5.0
|
| 8 |
numpy>=1.26.0
|
|
|
|
|
|
| 1 |
# Runtime dependencies for Retro Alpha Gradio Space
|
| 2 |
+
# Use prebuilt CPU wheel to avoid long source compilation in HF Spaces
|
| 3 |
+
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
| 4 |
gradio>=5.0.0
|
| 5 |
fastapi>=0.109.0
|
| 6 |
uvicorn>=0.27.0
|
|
|
|
| 8 |
python-dotenv>=1.0.0
|
| 9 |
pydantic>=2.5.0
|
| 10 |
numpy>=1.26.0
|
| 11 |
+
huggingface_hub>=0.20.0
|
space_logs.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
space_logs_clean.txt
ADDED
|
@@ -0,0 +1,954 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
===== Build Queued at 2026-06-14 04:46:39 / Commit SHA: 8dd87b4 =====
|
| 2 |
+
|
| 3 |
+
--> FROM docker.io/library/python:3.11-slim@sha256:f9fa7f851e38bfb19c9de3afbc4b86ae7176ea7aaf94535c31df5458d5849457
|
| 4 |
+
DONE 0.4s
|
| 5 |
+
|
| 6 |
+
DONE 1.0s
|
| 7 |
+
|
| 8 |
+
DONE 1.3s
|
| 9 |
+
|
| 10 |
+
DONE 1.8s
|
| 11 |
+
|
| 12 |
+
DONE 1.8s
|
| 13 |
+
|
| 14 |
+
--> WORKDIR /app
|
| 15 |
+
DONE 0.0s
|
| 16 |
+
|
| 17 |
+
--> RUN apt-get update && apt-get install -y build-essential cmake git libopenblas-dev && rm -rf /var/lib/apt/lists/*
|
| 18 |
+
Hit:1 http://deb.debian.org/debian trixie InRelease
|
| 19 |
+
Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
|
| 20 |
+
Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
|
| 21 |
+
Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
|
| 22 |
+
Get:5 http://deb.debian.org/debian trixie-updates/main amd64 Packages [5412 B]
|
| 23 |
+
Get:6 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [216 kB]
|
| 24 |
+
Fetched 9983 kB in 1s (12.7 MB/s)
|
| 25 |
+
Reading package lists...
|
| 26 |
+
Reading package lists...
|
| 27 |
+
Building dependency tree...
|
| 28 |
+
Reading state information...
|
| 29 |
+
The following additional packages will be installed:
|
| 30 |
+
binutils binutils-common binutils-x86-64-linux-gnu bzip2 cmake-data cpp
|
| 31 |
+
cpp-14 cpp-14-x86-64-linux-gnu cpp-x86-64-linux-gnu dpkg-dev fakeroot g++
|
| 32 |
+
g++-14 g++-14-x86-64-linux-gnu g++-x86-64-linux-gnu gcc gcc-14
|
| 33 |
+
gcc-14-x86-64-linux-gnu gcc-x86-64-linux-gnu git-man krb5-locales less
|
| 34 |
+
libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
|
| 35 |
+
libarchive13t64 libasan8 libatomic1 libbinutils libbrotli1 libc-dev-bin
|
| 36 |
+
libc6-dev libcbor0.10 libcc1-0 libcom-err2 libcrypt-dev libctf-nobfd0
|
| 37 |
+
libctf0 libcurl3t64-gnutls libcurl4t64 libdpkg-perl libedit2 liberror-perl
|
| 38 |
+
libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl libgcc-14-dev
|
| 39 |
+
libgdbm-compat4t64 libgfortran5 libgnutls30t64 libgomp1 libgprofng0
|
| 40 |
+
libgssapi-krb5-2 libhwasan0 libidn2-0 libisl23 libitm1 libjansson4
|
| 41 |
+
libjsoncpp26 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
|
| 42 |
+
libldap-common libldap2 liblocale-gettext-perl liblsan0 libmpc3 libmpfr6
|
| 43 |
+
libnghttp2-14 libnghttp3-9 libngtcp2-16 libngtcp2-crypto-gnutls8
|
| 44 |
+
libopenblas-pthread-dev libopenblas0 libopenblas0-pthread libp11-kit0
|
| 45 |
+
libperl5.40 libproc2-0 libpsl5t64 libquadmath0 librhash1 librtmp1 libsasl2-2
|
| 46 |
+
libsasl2-modules libsasl2-modules-db libsframe1 libssh2-1t64
|
| 47 |
+
libstdc++-14-dev libtasn1-6 libtsan2 libubsan1 libunistring5 libuv1t64
|
| 48 |
+
libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxml2 libxmuu1
|
| 49 |
+
linux-libc-dev linux-sysctl-defaults make manpages manpages-dev
|
| 50 |
+
openssh-client patch perl perl-modules-5.40 procps psmisc publicsuffix
|
| 51 |
+
rpcsvc-proto sq xauth xz-utils
|
| 52 |
+
Suggested packages:
|
| 53 |
+
binutils-doc gprofng-gui binutils-gold bzip2-doc cmake-doc cmake-format
|
| 54 |
+
elpa-cmake-mode ninja-build cpp-doc gcc-14-locales cpp-14-doc debian-keyring
|
| 55 |
+
debian-tag2upload-keyring g++-multilib g++-14-multilib gcc-14-doc
|
| 56 |
+
gcc-multilib autoconf automake libtool flex bison gdb gcc-doc
|
| 57 |
+
gcc-14-multilib gdb-x86-64-linux-gnu gettext-base git-doc git-email git-gui
|
| 58 |
+
gitk gitweb git-cvs git-mediawiki git-svn lrzip libc-devtools glibc-doc
|
| 59 |
+
sensible-utils bzr gnutls-bin krb5-doc krb5-user libsasl2-modules-gssapi-mit
|
| 60 |
+
| libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
|
| 61 |
+
libsasl2-modules-sql libstdc++-14-doc make-doc man-browser keychain
|
| 62 |
+
libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc
|
| 63 |
+
libterm-readline-gnu-perl | libterm-readline-perl-perl
|
| 64 |
+
libtap-harness-archive-perl
|
| 65 |
+
The following NEW packages will be installed:
|
| 66 |
+
binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2
|
| 67 |
+
cmake cmake-data cpp cpp-14 cpp-14-x86-64-linux-gnu cpp-x86-64-linux-gnu
|
| 68 |
+
dpkg-dev fakeroot g++ g++-14 g++-14-x86-64-linux-gnu g++-x86-64-linux-gnu
|
| 69 |
+
gcc gcc-14 gcc-14-x86-64-linux-gnu gcc-x86-64-linux-gnu git git-man
|
| 70 |
+
krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl
|
| 71 |
+
libalgorithm-merge-perl libarchive13t64 libasan8 libatomic1 libbinutils
|
| 72 |
+
libbrotli1 libc-dev-bin libc6-dev libcbor0.10 libcc1-0 libcom-err2
|
| 73 |
+
libcrypt-dev libctf-nobfd0 libctf0 libcurl3t64-gnutls libcurl4t64
|
| 74 |
+
libdpkg-perl libedit2 liberror-perl libexpat1 libfakeroot libfido2-1
|
| 75 |
+
libfile-fcntllock-perl libgcc-14-dev libgdbm-compat4t64 libgfortran5
|
| 76 |
+
libgnutls30t64 libgomp1 libgprofng0 libgssapi-krb5-2 libhwasan0 libidn2-0
|
| 77 |
+
libisl23 libitm1 libjansson4 libjsoncpp26 libk5crypto3 libkeyutils1
|
| 78 |
+
libkrb5-3 libkrb5support0 libldap-common libldap2 liblocale-gettext-perl
|
| 79 |
+
liblsan0 libmpc3 libmpfr6 libnghttp2-14 libnghttp3-9 libngtcp2-16
|
| 80 |
+
libngtcp2-crypto-gnutls8 libopenblas-dev libopenblas-pthread-dev
|
| 81 |
+
libopenblas0 libopenblas0-pthread libp11-kit0 libperl5.40 libproc2-0
|
| 82 |
+
libpsl5t64 libquadmath0 librhash1 librtmp1 libsasl2-2 libsasl2-modules
|
| 83 |
+
libsasl2-modules-db libsframe1 libssh2-1t64 libstdc++-14-dev libtasn1-6
|
| 84 |
+
libtsan2 libubsan1 libunistring5 libuv1t64 libx11-6 libx11-data libxau6
|
| 85 |
+
libxcb1 libxdmcp6 libxext6 libxml2 libxmuu1 linux-libc-dev
|
| 86 |
+
linux-sysctl-defaults make manpages manpages-dev openssh-client patch perl
|
| 87 |
+
perl-modules-5.40 procps psmisc publicsuffix rpcsvc-proto sq xauth xz-utils
|
| 88 |
+
0 upgraded, 123 newly installed, 0 to remove and 0 not upgraded.
|
| 89 |
+
Need to get 141 MB of archives.
|
| 90 |
+
After this operation, 621 MB of additional disk space will be used.
|
| 91 |
+
Get:1 http://deb.debian.org/debian trixie/main amd64 libexpat1 amd64 2.7.1-2 [108 kB]
|
| 92 |
+
Get:2 http://deb.debian.org/debian trixie/main amd64 liblocale-gettext-perl amd64 1.07-7+b1 [15.3 kB]
|
| 93 |
+
Get:3 http://deb.debian.org/debian trixie/main amd64 less amd64 668-1 [161 kB]
|
| 94 |
+
Get:4 http://deb.debian.org/debian trixie/main amd64 linux-sysctl-defaults all 4.12.1 [5724 B]
|
| 95 |
+
Get:5 http://deb.debian.org/debian trixie/main amd64 libproc2-0 amd64 2:4.0.4-9 [65.6 kB]
|
| 96 |
+
Get:6 http://deb.debian.org/debian trixie/main amd64 procps amd64 2:4.0.4-9 [882 kB]
|
| 97 |
+
Get:7 http://deb.debian.org/debian trixie/main amd64 bzip2 amd64 1.0.8-6 [40.5 kB]
|
| 98 |
+
Get:8 http://deb.debian.org/debian-security trixie-security/main amd64 krb5-locales all 1.21.3-5+deb13u1 [101 kB]
|
| 99 |
+
Get:9 http://deb.debian.org/debian trixie/main amd64 manpages all 6.9.1-1 [1393 kB]
|
| 100 |
+
Get:10 http://deb.debian.org/debian trixie/main amd64 libedit2 amd64 3.1-20250104-1 [93.8 kB]
|
| 101 |
+
Get:11 http://deb.debian.org/debian trixie/main amd64 libcbor0.10 amd64 0.10.2-2 [28.3 kB]
|
| 102 |
+
Get:12 http://deb.debian.org/debian trixie/main amd64 libfido2-1 amd64 1.15.0-1+b1 [78.7 kB]
|
| 103 |
+
Get:13 http://deb.debian.org/debian-security trixie-security/main amd64 libkrb5support0 amd64 1.21.3-5+deb13u1 [33.1 kB]
|
| 104 |
+
Get:14 http://deb.debian.org/debian trixie/main amd64 libcom-err2 amd64 1.47.2-3+b11 [25.0 kB]
|
| 105 |
+
Get:15 http://deb.debian.org/debian-security trixie-security/main amd64 libk5crypto3 amd64 1.21.3-5+deb13u1 [81.2 kB]
|
| 106 |
+
Get:16 http://deb.debian.org/debian trixie/main amd64 libkeyutils1 amd64 1.6.3-6 [9456 B]
|
| 107 |
+
Get:17 http://deb.debian.org/debian-security trixie-security/main amd64 libkrb5-3 amd64 1.21.3-5+deb13u1 [326 kB]
|
| 108 |
+
Get:18 http://deb.debian.org/debian-security trixie-security/main amd64 libgssapi-krb5-2 amd64 1.21.3-5+deb13u1 [138 kB]
|
| 109 |
+
Get:19 http://deb.debian.org/debian trixie/main amd64 openssh-client amd64 1:10.0p1-7+deb13u4 [990 kB]
|
| 110 |
+
Get:20 http://deb.debian.org/debian trixie/main amd64 perl-modules-5.40 all 5.40.1-6 [3019 kB]
|
| 111 |
+
Get:21 http://deb.debian.org/debian trixie/main amd64 libgdbm-compat4t64 amd64 1.24-2 [50.3 kB]
|
| 112 |
+
Get:22 http://deb.debian.org/debian trixie/main amd64 libperl5.40 amd64 5.40.1-6 [4341 kB]
|
| 113 |
+
Get:23 http://deb.debian.org/debian trixie/main amd64 perl amd64 5.40.1-6 [267 kB]
|
| 114 |
+
Get:24 http://deb.debian.org/debian trixie/main amd64 xz-utils amd64 5.8.1-1 [660 kB]
|
| 115 |
+
Get:25 http://deb.debian.org/debian trixie/main amd64 libsframe1 amd64 2.44-3 [78.4 kB]
|
| 116 |
+
Get:26 http://deb.debian.org/debian trixie/main amd64 binutils-common amd64 2.44-3 [2509 kB]
|
| 117 |
+
Get:27 http://deb.debian.org/debian trixie/main amd64 libbinutils amd64 2.44-3 [534 kB]
|
| 118 |
+
Get:28 http://deb.debian.org/debian trixie/main amd64 libgprofng0 amd64 2.44-3 [808 kB]
|
| 119 |
+
Get:29 http://deb.debian.org/debian trixie/main amd64 libctf-nobfd0 amd64 2.44-3 [156 kB]
|
| 120 |
+
Get:30 http://deb.debian.org/debian trixie/main amd64 libctf0 amd64 2.44-3 [88.6 kB]
|
| 121 |
+
Get:31 http://deb.debian.org/debian trixie/main amd64 libjansson4 amd64 2.14-2+b3 [39.8 kB]
|
| 122 |
+
Get:32 http://deb.debian.org/debian trixie/main amd64 binutils-x86-64-linux-gnu amd64 2.44-3 [1014 kB]
|
| 123 |
+
Get:33 http://deb.debian.org/debian trixie/main amd64 binutils amd64 2.44-3 [265 kB]
|
| 124 |
+
Get:34 http://deb.debian.org/debian trixie/main amd64 libc-dev-bin amd64 2.41-12+deb13u3 [59.8 kB]
|
| 125 |
+
Get:35 http://deb.debian.org/debian-security trixie-security/main amd64 linux-libc-dev all 6.12.90-2 [2813 kB]
|
| 126 |
+
Get:36 http://deb.debian.org/debian trixie/main amd64 libcrypt-dev amd64 1:4.4.38-1 [119 kB]
|
| 127 |
+
Get:37 http://deb.debian.org/debian trixie/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB]
|
| 128 |
+
Get:38 http://deb.debian.org/debian trixie/main amd64 libc6-dev amd64 2.41-12+deb13u3 [1992 kB]
|
| 129 |
+
Get:39 http://deb.debian.org/debian trixie/main amd64 libisl23 amd64 0.27-1 [659 kB]
|
| 130 |
+
Get:40 http://deb.debian.org/debian trixie/main amd64 libmpfr6 amd64 4.2.2-1 [729 kB]
|
| 131 |
+
Get:41 http://deb.debian.org/debian trixie/main amd64 libmpc3 amd64 1.3.1-1+b3 [52.2 kB]
|
| 132 |
+
Get:42 http://deb.debian.org/debian trixie/main amd64 cpp-14-x86-64-linux-gnu amd64 14.2.0-19 [11.0 MB]
|
| 133 |
+
Get:43 http://deb.debian.org/debian trixie/main amd64 cpp-14 amd64 14.2.0-19 [1280 B]
|
| 134 |
+
Get:44 http://deb.debian.org/debian trixie/main amd64 cpp-x86-64-linux-gnu amd64 4:14.2.0-1 [4840 B]
|
| 135 |
+
Get:45 http://deb.debian.org/debian trixie/main amd64 cpp amd64 4:14.2.0-1 [1568 B]
|
| 136 |
+
Get:46 http://deb.debian.org/debian trixie/main amd64 libcc1-0 amd64 14.2.0-19 [42.8 kB]
|
| 137 |
+
Get:47 http://deb.debian.org/debian trixie/main amd64 libgomp1 amd64 14.2.0-19 [137 kB]
|
| 138 |
+
Get:48 http://deb.debian.org/debian trixie/main amd64 libitm1 amd64 14.2.0-19 [26.0 kB]
|
| 139 |
+
Get:49 http://deb.debian.org/debian trixie/main amd64 libatomic1 amd64 14.2.0-19 [9308 B]
|
| 140 |
+
Get:50 http://deb.debian.org/debian trixie/main amd64 libasan8 amd64 14.2.0-19 [2725 kB]
|
| 141 |
+
Get:51 http://deb.debian.org/debian trixie/main amd64 liblsan0 amd64 14.2.0-19 [1204 kB]
|
| 142 |
+
Get:52 http://deb.debian.org/debian trixie/main amd64 libtsan2 amd64 14.2.0-19 [2460 kB]
|
| 143 |
+
Get:53 http://deb.debian.org/debian trixie/main amd64 libubsan1 amd64 14.2.0-19 [1074 kB]
|
| 144 |
+
Get:54 http://deb.debian.org/debian trixie/main amd64 libhwasan0 amd64 14.2.0-19 [1488 kB]
|
| 145 |
+
Get:55 http://deb.debian.org/debian trixie/main amd64 libquadmath0 amd64 14.2.0-19 [145 kB]
|
| 146 |
+
Get:56 http://deb.debian.org/debian trixie/main amd64 libgcc-14-dev amd64 14.2.0-19 [2672 kB]
|
| 147 |
+
Get:57 http://deb.debian.org/debian trixie/main amd64 gcc-14-x86-64-linux-gnu amd64 14.2.0-19 [21.4 MB]
|
| 148 |
+
Get:58 http://deb.debian.org/debian trixie/main amd64 gcc-14 amd64 14.2.0-19 [540 kB]
|
| 149 |
+
Get:59 http://deb.debian.org/debian trixie/main amd64 gcc-x86-64-linux-gnu amd64 4:14.2.0-1 [1436 B]
|
| 150 |
+
Get:60 http://deb.debian.org/debian trixie/main amd64 gcc amd64 4:14.2.0-1 [5136 B]
|
| 151 |
+
Get:61 http://deb.debian.org/debian trixie/main amd64 libstdc++-14-dev amd64 14.2.0-19 [2376 kB]
|
| 152 |
+
Get:62 http://deb.debian.org/debian trixie/main amd64 g++-14-x86-64-linux-gnu amd64 14.2.0-19 [12.1 MB]
|
| 153 |
+
Get:63 http://deb.debian.org/debian trixie/main amd64 g++-14 amd64 14.2.0-19 [22.5 kB]
|
| 154 |
+
Get:64 http://deb.debian.org/debian trixie/main amd64 g++-x86-64-linux-gnu amd64 4:14.2.0-1 [1200 B]
|
| 155 |
+
Get:65 http://deb.debian.org/debian trixie/main amd64 g++ amd64 4:14.2.0-1 [1344 B]
|
| 156 |
+
Get:66 http://deb.debian.org/debian trixie/main amd64 make amd64 4.4.1-2 [463 kB]
|
| 157 |
+
Get:67 http://deb.debian.org/debian trixie/main amd64 libdpkg-perl all 1.22.22 [651 kB]
|
| 158 |
+
Get:68 http://deb.debian.org/debian trixie/main amd64 patch amd64 2.8-2 [134 kB]
|
| 159 |
+
Get:69 http://deb.debian.org/debian trixie/main amd64 dpkg-dev all 1.22.22 [1337 kB]
|
| 160 |
+
Get:70 http://deb.debian.org/debian trixie/main amd64 build-essential amd64 12.12 [4624 B]
|
| 161 |
+
Get:71 http://deb.debian.org/debian trixie/main amd64 cmake-data all 3.31.6-2 [2268 kB]
|
| 162 |
+
Get:72 http://deb.debian.org/debian trixie/main amd64 libxml2 amd64 2.12.7+dfsg+really2.9.14-2.1+deb13u2 [698 kB]
|
| 163 |
+
Get:73 http://deb.debian.org/debian trixie/main amd64 libarchive13t64 amd64 3.7.4-4+deb13u1 [350 kB]
|
| 164 |
+
Get:74 http://deb.debian.org/debian trixie/main amd64 libbrotli1 amd64 1.1.0-2+b7 [307 kB]
|
| 165 |
+
Get:75 http://deb.debian.org/debian trixie/main amd64 libunistring5 amd64 1.3-2 [477 kB]
|
| 166 |
+
Get:76 http://deb.debian.org/debian trixie/main amd64 libidn2-0 amd64 2.3.8-2 [109 kB]
|
| 167 |
+
Get:77 http://deb.debian.org/debian trixie/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg1-9 [19.8 kB]
|
| 168 |
+
Get:78 http://deb.debian.org/debian trixie/main amd64 libsasl2-2 amd64 2.1.28+dfsg1-9 [57.5 kB]
|
| 169 |
+
Get:79 http://deb.debian.org/debian trixie/main amd64 libldap2 amd64 2.6.10+dfsg-1 [194 kB]
|
| 170 |
+
Get:80 http://deb.debian.org/debian-security trixie-security/main amd64 libnghttp2-14 amd64 1.64.0-1.1+deb13u1 [76.2 kB]
|
| 171 |
+
Get:81 http://deb.debian.org/debian trixie/main amd64 libnghttp3-9 amd64 1.8.0-1 [67.7 kB]
|
| 172 |
+
Get:82 http://deb.debian.org/debian trixie/main amd64 libpsl5t64 amd64 0.21.2-1.1+b1 [57.2 kB]
|
| 173 |
+
Get:83 http://deb.debian.org/debian trixie/main amd64 libp11-kit0 amd64 0.25.5-3 [425 kB]
|
| 174 |
+
Get:84 http://deb.debian.org/debian trixie/main amd64 libtasn1-6 amd64 4.20.0-2 [49.9 kB]
|
| 175 |
+
Get:85 http://deb.debian.org/debian-security trixie-security/main amd64 libgnutls30t64 amd64 3.8.9-3+deb13u4 [1469 kB]
|
| 176 |
+
Get:86 http://deb.debian.org/debian trixie/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b5 [58.8 kB]
|
| 177 |
+
Get:87 http://deb.debian.org/debian trixie/main amd64 libssh2-1t64 amd64 1.11.1-1 [245 kB]
|
| 178 |
+
Get:88 http://deb.debian.org/debian trixie/main amd64 libcurl4t64 amd64 8.14.1-2+deb13u3 [391 kB]
|
| 179 |
+
Get:89 http://deb.debian.org/debian trixie/main amd64 libjsoncpp26 amd64 1.9.6-3 [81.7 kB]
|
| 180 |
+
Get:90 http://deb.debian.org/debian trixie/main amd64 librhash1 amd64 1.4.5-1 [132 kB]
|
| 181 |
+
Get:91 http://deb.debian.org/debian trixie/main amd64 libuv1t64 amd64 1.50.0-2 [154 kB]
|
| 182 |
+
Get:92 http://deb.debian.org/debian trixie/main amd64 cmake amd64 3.31.6-2 [12.0 MB]
|
| 183 |
+
Get:93 http://deb.debian.org/debian trixie/main amd64 libfakeroot amd64 1.37.1.1-1 [29.6 kB]
|
| 184 |
+
Get:94 http://deb.debian.org/debian trixie/main amd64 fakeroot amd64 1.37.1.1-1 [76.0 kB]
|
| 185 |
+
Get:95 http://deb.debian.org/debian trixie/main amd64 libngtcp2-16 amd64 1.11.0-1+deb13u1 [132 kB]
|
| 186 |
+
Get:96 http://deb.debian.org/debian trixie/main amd64 libngtcp2-crypto-gnutls8 amd64 1.11.0-1+deb13u1 [29.5 kB]
|
| 187 |
+
Get:97 http://deb.debian.org/debian trixie/main amd64 libcurl3t64-gnutls amd64 8.14.1-2+deb13u3 [384 kB]
|
| 188 |
+
Get:98 http://deb.debian.org/debian trixie/main amd64 liberror-perl all 0.17030-1 [26.9 kB]
|
| 189 |
+
Get:99 http://deb.debian.org/debian trixie/main amd64 git-man all 1:2.47.3-0+deb13u1 [2205 kB]
|
| 190 |
+
Get:100 http://deb.debian.org/debian trixie/main amd64 git amd64 1:2.47.3-0+deb13u1 [8862 kB]
|
| 191 |
+
Get:101 http://deb.debian.org/debian trixie/main amd64 libalgorithm-diff-perl all 1.201-1 [43.3 kB]
|
| 192 |
+
Get:102 http://deb.debian.org/debian trixie/main amd64 libalgorithm-diff-xs-perl amd64 0.04-9 [11.1 kB]
|
| 193 |
+
Get:103 http://deb.debian.org/debian trixie/main amd64 libalgorithm-merge-perl all 0.08-5 [11.8 kB]
|
| 194 |
+
Get:104 http://deb.debian.org/debian trixie/main amd64 libfile-fcntllock-perl amd64 0.22-4+b4 [34.6 kB]
|
| 195 |
+
Get:105 http://deb.debian.org/debian trixie/main amd64 libgfortran5 amd64 14.2.0-19 [836 kB]
|
| 196 |
+
Get:106 http://deb.debian.org/debian trixie/main amd64 libldap-common all 2.6.10+dfsg-1 [35.1 kB]
|
| 197 |
+
Get:107 http://deb.debian.org/debian trixie/main amd64 libopenblas0-pthread amd64 0.3.29+ds-3 [6740 kB]
|
| 198 |
+
Get:108 http://deb.debian.org/debian trixie/main amd64 libopenblas0 amd64 0.3.29+ds-3 [42.7 kB]
|
| 199 |
+
Get:109 http://deb.debian.org/debian trixie/main amd64 libopenblas-pthread-dev amd64 0.3.29+ds-3 [5063 kB]
|
| 200 |
+
Get:110 http://deb.debian.org/debian trixie/main amd64 libopenblas-dev amd64 0.3.29+ds-3 [57.0 kB]
|
| 201 |
+
Get:111 http://deb.debian.org/debian trixie/main amd64 libsasl2-modules amd64 2.1.28+dfsg1-9 [66.7 kB]
|
| 202 |
+
Get:112 http://deb.debian.org/debian trixie/main amd64 libxau6 amd64 1:1.0.11-1 [20.4 kB]
|
| 203 |
+
Get:113 http://deb.debian.org/debian trixie/main amd64 libxdmcp6 amd64 1:1.1.5-1 [27.8 kB]
|
| 204 |
+
Get:114 http://deb.debian.org/debian trixie/main amd64 libxcb1 amd64 1.17.0-2+b1 [144 kB]
|
| 205 |
+
Get:115 http://deb.debian.org/debian trixie/main amd64 libx11-data all 2:1.8.12-1 [343 kB]
|
| 206 |
+
Get:116 http://deb.debian.org/debian trixie/main amd64 libx11-6 amd64 2:1.8.12-1 [815 kB]
|
| 207 |
+
Get:117 http://deb.debian.org/debian trixie/main amd64 libxext6 amd64 2:1.3.4-1+b3 [50.4 kB]
|
| 208 |
+
Get:118 http://deb.debian.org/debian trixie/main amd64 libxmuu1 amd64 2:1.1.3-3+b4 [21.9 kB]
|
| 209 |
+
Get:119 http://deb.debian.org/debian trixie/main amd64 manpages-dev all 6.9.1-1 [2122 kB]
|
| 210 |
+
Get:120 http://deb.debian.org/debian trixie/main amd64 psmisc amd64 23.7-2 [267 kB]
|
| 211 |
+
Get:121 http://deb.debian.org/debian trixie/main amd64 publicsuffix all 20250328.1952-0.1 [296 kB]
|
| 212 |
+
Get:122 http://deb.debian.org/debian trixie/main amd64 sq amd64 1.3.1-2+b2 [5653 kB]
|
| 213 |
+
Get:123 http://deb.debian.org/debian trixie/main amd64 xauth amd64 1:1.1.2-1.1 [35.9 kB]
|
| 214 |
+
debconf: unable to initialize frontend: Dialog
|
| 215 |
+
debconf: (TERM is not set, so the dialog frontend is not usable.)
|
| 216 |
+
debconf: falling back to frontend: Readline
|
| 217 |
+
debconf: unable to initialize frontend: Readline
|
| 218 |
+
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.40.1 /usr/local/share/perl/5.40.1 /usr/lib/x86_64-linux-gnu/perl5/5.40 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.40 /usr/share/perl/5.40 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8, <STDIN> line 123.)
|
| 219 |
+
debconf: falling back to frontend: Teletype
|
| 220 |
+
debconf: unable to initialize frontend: Teletype
|
| 221 |
+
debconf: (This frontend requires a controlling tty.)
|
| 222 |
+
debconf: falling back to frontend: Noninteractive
|
| 223 |
+
Fetched 141 MB in 1s (257 MB/s)
|
| 224 |
+
Selecting previously unselected package libexpat1:amd64.
|
| 225 |
+
(Reading database ...
|
| 226 |
+
Preparing to unpack .../000-libexpat1_2.7.1-2_amd64.deb ...
|
| 227 |
+
Unpacking libexpat1:amd64 (2.7.1-2) ...
|
| 228 |
+
Selecting previously unselected package liblocale-gettext-perl.
|
| 229 |
+
Preparing to unpack .../001-liblocale-gettext-perl_1.07-7+b1_amd64.deb ...
|
| 230 |
+
Unpacking liblocale-gettext-perl (1.07-7+b1) ...
|
| 231 |
+
Selecting previously unselected package less.
|
| 232 |
+
Preparing to unpack .../002-less_668-1_amd64.deb ...
|
| 233 |
+
Unpacking less (668-1) ...
|
| 234 |
+
Selecting previously unselected package linux-sysctl-defaults.
|
| 235 |
+
Preparing to unpack .../003-linux-sysctl-defaults_4.12.1_all.deb ...
|
| 236 |
+
Unpacking linux-sysctl-defaults (4.12.1) ...
|
| 237 |
+
Selecting previously unselected package libproc2-0:amd64.
|
| 238 |
+
Preparing to unpack .../004-libproc2-0_2%3a4.0.4-9_amd64.deb ...
|
| 239 |
+
Unpacking libproc2-0:amd64 (2:4.0.4-9) ...
|
| 240 |
+
Selecting previously unselected package procps.
|
| 241 |
+
Preparing to unpack .../005-procps_2%3a4.0.4-9_amd64.deb ...
|
| 242 |
+
Unpacking procps (2:4.0.4-9) ...
|
| 243 |
+
Selecting previously unselected package bzip2.
|
| 244 |
+
Preparing to unpack .../006-bzip2_1.0.8-6_amd64.deb ...
|
| 245 |
+
Unpacking bzip2 (1.0.8-6) ...
|
| 246 |
+
Selecting previously unselected package krb5-locales.
|
| 247 |
+
Preparing to unpack .../007-krb5-locales_1.21.3-5+deb13u1_all.deb ...
|
| 248 |
+
Unpacking krb5-locales (1.21.3-5+deb13u1) ...
|
| 249 |
+
Selecting previously unselected package manpages.
|
| 250 |
+
Preparing to unpack .../008-manpages_6.9.1-1_all.deb ...
|
| 251 |
+
Unpacking manpages (6.9.1-1) ...
|
| 252 |
+
Selecting previously unselected package libedit2:amd64.
|
| 253 |
+
Preparing to unpack .../009-libedit2_3.1-20250104-1_amd64.deb ...
|
| 254 |
+
Unpacking libedit2:amd64 (3.1-20250104-1) ...
|
| 255 |
+
Selecting previously unselected package libcbor0.10:amd64.
|
| 256 |
+
Preparing to unpack .../010-libcbor0.10_0.10.2-2_amd64.deb ...
|
| 257 |
+
Unpacking libcbor0.10:amd64 (0.10.2-2) ...
|
| 258 |
+
Selecting previously unselected package libfido2-1:amd64.
|
| 259 |
+
Preparing to unpack .../011-libfido2-1_1.15.0-1+b1_amd64.deb ...
|
| 260 |
+
Unpacking libfido2-1:amd64 (1.15.0-1+b1) ...
|
| 261 |
+
Selecting previously unselected package libkrb5support0:amd64.
|
| 262 |
+
Preparing to unpack .../012-libkrb5support0_1.21.3-5+deb13u1_amd64.deb ...
|
| 263 |
+
Unpacking libkrb5support0:amd64 (1.21.3-5+deb13u1) ...
|
| 264 |
+
Selecting previously unselected package libcom-err2:amd64.
|
| 265 |
+
Preparing to unpack .../013-libcom-err2_1.47.2-3+b11_amd64.deb ...
|
| 266 |
+
Unpacking libcom-err2:amd64 (1.47.2-3+b11) ...
|
| 267 |
+
Selecting previously unselected package libk5crypto3:amd64.
|
| 268 |
+
Preparing to unpack .../014-libk5crypto3_1.21.3-5+deb13u1_amd64.deb ...
|
| 269 |
+
Unpacking libk5crypto3:amd64 (1.21.3-5+deb13u1) ...
|
| 270 |
+
Selecting previously unselected package libkeyutils1:amd64.
|
| 271 |
+
Preparing to unpack .../015-libkeyutils1_1.6.3-6_amd64.deb ...
|
| 272 |
+
Unpacking libkeyutils1:amd64 (1.6.3-6) ...
|
| 273 |
+
Selecting previously unselected package libkrb5-3:amd64.
|
| 274 |
+
Preparing to unpack .../016-libkrb5-3_1.21.3-5+deb13u1_amd64.deb ...
|
| 275 |
+
Unpacking libkrb5-3:amd64 (1.21.3-5+deb13u1) ...
|
| 276 |
+
Selecting previously unselected package libgssapi-krb5-2:amd64.
|
| 277 |
+
Preparing to unpack .../017-libgssapi-krb5-2_1.21.3-5+deb13u1_amd64.deb ...
|
| 278 |
+
Unpacking libgssapi-krb5-2:amd64 (1.21.3-5+deb13u1) ...
|
| 279 |
+
Selecting previously unselected package openssh-client.
|
| 280 |
+
Preparing to unpack .../018-openssh-client_1%3a10.0p1-7+deb13u4_amd64.deb ...
|
| 281 |
+
Unpacking openssh-client (1:10.0p1-7+deb13u4) ...
|
| 282 |
+
Selecting previously unselected package perl-modules-5.40.
|
| 283 |
+
Preparing to unpack .../019-perl-modules-5.40_5.40.1-6_all.deb ...
|
| 284 |
+
Unpacking perl-modules-5.40 (5.40.1-6) ...
|
| 285 |
+
Selecting previously unselected package libgdbm-compat4t64:amd64.
|
| 286 |
+
Preparing to unpack .../020-libgdbm-compat4t64_1.24-2_amd64.deb ...
|
| 287 |
+
Unpacking libgdbm-compat4t64:amd64 (1.24-2) ...
|
| 288 |
+
Selecting previously unselected package libperl5.40:amd64.
|
| 289 |
+
Preparing to unpack .../021-libperl5.40_5.40.1-6_amd64.deb ...
|
| 290 |
+
Unpacking libperl5.40:amd64 (5.40.1-6) ...
|
| 291 |
+
Selecting previously unselected package perl.
|
| 292 |
+
Preparing to unpack .../022-perl_5.40.1-6_amd64.deb ...
|
| 293 |
+
Unpacking perl (5.40.1-6) ...
|
| 294 |
+
Selecting previously unselected package xz-utils.
|
| 295 |
+
Preparing to unpack .../023-xz-utils_5.8.1-1_amd64.deb ...
|
| 296 |
+
Unpacking xz-utils (5.8.1-1) ...
|
| 297 |
+
Selecting previously unselected package libsframe1:amd64.
|
| 298 |
+
Preparing to unpack .../024-libsframe1_2.44-3_amd64.deb ...
|
| 299 |
+
Unpacking libsframe1:amd64 (2.44-3) ...
|
| 300 |
+
Selecting previously unselected package binutils-common:amd64.
|
| 301 |
+
Preparing to unpack .../025-binutils-common_2.44-3_amd64.deb ...
|
| 302 |
+
Unpacking binutils-common:amd64 (2.44-3) ...
|
| 303 |
+
Selecting previously unselected package libbinutils:amd64.
|
| 304 |
+
Preparing to unpack .../026-libbinutils_2.44-3_amd64.deb ...
|
| 305 |
+
Unpacking libbinutils:amd64 (2.44-3) ...
|
| 306 |
+
Selecting previously unselected package libgprofng0:amd64.
|
| 307 |
+
Preparing to unpack .../027-libgprofng0_2.44-3_amd64.deb ...
|
| 308 |
+
Unpacking libgprofng0:amd64 (2.44-3) ...
|
| 309 |
+
Selecting previously unselected package libctf-nobfd0:amd64.
|
| 310 |
+
Preparing to unpack .../028-libctf-nobfd0_2.44-3_amd64.deb ...
|
| 311 |
+
Unpacking libctf-nobfd0:amd64 (2.44-3) ...
|
| 312 |
+
Selecting previously unselected package libctf0:amd64.
|
| 313 |
+
Preparing to unpack .../029-libctf0_2.44-3_amd64.deb ...
|
| 314 |
+
Unpacking libctf0:amd64 (2.44-3) ...
|
| 315 |
+
Selecting previously unselected package libjansson4:amd64.
|
| 316 |
+
Preparing to unpack .../030-libjansson4_2.14-2+b3_amd64.deb ...
|
| 317 |
+
Unpacking libjansson4:amd64 (2.14-2+b3) ...
|
| 318 |
+
Selecting previously unselected package binutils-x86-64-linux-gnu.
|
| 319 |
+
Preparing to unpack .../031-binutils-x86-64-linux-gnu_2.44-3_amd64.deb ...
|
| 320 |
+
Unpacking binutils-x86-64-linux-gnu (2.44-3) ...
|
| 321 |
+
Selecting previously unselected package binutils.
|
| 322 |
+
Preparing to unpack .../032-binutils_2.44-3_amd64.deb ...
|
| 323 |
+
Unpacking binutils (2.44-3) ...
|
| 324 |
+
Selecting previously unselected package libc-dev-bin.
|
| 325 |
+
Preparing to unpack .../033-libc-dev-bin_2.41-12+deb13u3_amd64.deb ...
|
| 326 |
+
Unpacking libc-dev-bin (2.41-12+deb13u3) ...
|
| 327 |
+
Selecting previously unselected package linux-libc-dev.
|
| 328 |
+
Preparing to unpack .../034-linux-libc-dev_6.12.90-2_all.deb ...
|
| 329 |
+
Unpacking linux-libc-dev (6.12.90-2) ...
|
| 330 |
+
Selecting previously unselected package libcrypt-dev:amd64.
|
| 331 |
+
Preparing to unpack .../035-libcrypt-dev_1%3a4.4.38-1_amd64.deb ...
|
| 332 |
+
Unpacking libcrypt-dev:amd64 (1:4.4.38-1) ...
|
| 333 |
+
Selecting previously unselected package rpcsvc-proto.
|
| 334 |
+
Preparing to unpack .../036-rpcsvc-proto_1.4.3-1_amd64.deb ...
|
| 335 |
+
Unpacking rpcsvc-proto (1.4.3-1) ...
|
| 336 |
+
Selecting previously unselected package libc6-dev:amd64.
|
| 337 |
+
Preparing to unpack .../037-libc6-dev_2.41-12+deb13u3_amd64.deb ...
|
| 338 |
+
Unpacking libc6-dev:amd64 (2.41-12+deb13u3) ...
|
| 339 |
+
Selecting previously unselected package libisl23:amd64.
|
| 340 |
+
Preparing to unpack .../038-libisl23_0.27-1_amd64.deb ...
|
| 341 |
+
Unpacking libisl23:amd64 (0.27-1) ...
|
| 342 |
+
Selecting previously unselected package libmpfr6:amd64.
|
| 343 |
+
Preparing to unpack .../039-libmpfr6_4.2.2-1_amd64.deb ...
|
| 344 |
+
Unpacking libmpfr6:amd64 (4.2.2-1) ...
|
| 345 |
+
Selecting previously unselected package libmpc3:amd64.
|
| 346 |
+
Preparing to unpack .../040-libmpc3_1.3.1-1+b3_amd64.deb ...
|
| 347 |
+
Unpacking libmpc3:amd64 (1.3.1-1+b3) ...
|
| 348 |
+
Selecting previously unselected package cpp-14-x86-64-linux-gnu.
|
| 349 |
+
Preparing to unpack .../041-cpp-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
|
| 350 |
+
Unpacking cpp-14-x86-64-linux-gnu (14.2.0-19) ...
|
| 351 |
+
Selecting previously unselected package cpp-14.
|
| 352 |
+
Preparing to unpack .../042-cpp-14_14.2.0-19_amd64.deb ...
|
| 353 |
+
Unpacking cpp-14 (14.2.0-19) ...
|
| 354 |
+
Selecting previously unselected package cpp-x86-64-linux-gnu.
|
| 355 |
+
Preparing to unpack .../043-cpp-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
|
| 356 |
+
Unpacking cpp-x86-64-linux-gnu (4:14.2.0-1) ...
|
| 357 |
+
Selecting previously unselected package cpp.
|
| 358 |
+
Preparing to unpack .../044-cpp_4%3a14.2.0-1_amd64.deb ...
|
| 359 |
+
Unpacking cpp (4:14.2.0-1) ...
|
| 360 |
+
Selecting previously unselected package libcc1-0:amd64.
|
| 361 |
+
Preparing to unpack .../045-libcc1-0_14.2.0-19_amd64.deb ...
|
| 362 |
+
Unpacking libcc1-0:amd64 (14.2.0-19) ...
|
| 363 |
+
Selecting previously unselected package libgomp1:amd64.
|
| 364 |
+
Preparing to unpack .../046-libgomp1_14.2.0-19_amd64.deb ...
|
| 365 |
+
Unpacking libgomp1:amd64 (14.2.0-19) ...
|
| 366 |
+
Selecting previously unselected package libitm1:amd64.
|
| 367 |
+
Preparing to unpack .../047-libitm1_14.2.0-19_amd64.deb ...
|
| 368 |
+
Unpacking libitm1:amd64 (14.2.0-19) ...
|
| 369 |
+
Selecting previously unselected package libatomic1:amd64.
|
| 370 |
+
Preparing to unpack .../048-libatomic1_14.2.0-19_amd64.deb ...
|
| 371 |
+
Unpacking libatomic1:amd64 (14.2.0-19) ...
|
| 372 |
+
Selecting previously unselected package libasan8:amd64.
|
| 373 |
+
Preparing to unpack .../049-libasan8_14.2.0-19_amd64.deb ...
|
| 374 |
+
Unpacking libasan8:amd64 (14.2.0-19) ...
|
| 375 |
+
Selecting previously unselected package liblsan0:amd64.
|
| 376 |
+
Preparing to unpack .../050-liblsan0_14.2.0-19_amd64.deb ...
|
| 377 |
+
Unpacking liblsan0:amd64 (14.2.0-19) ...
|
| 378 |
+
Selecting previously unselected package libtsan2:amd64.
|
| 379 |
+
Preparing to unpack .../051-libtsan2_14.2.0-19_amd64.deb ...
|
| 380 |
+
Unpacking libtsan2:amd64 (14.2.0-19) ...
|
| 381 |
+
Selecting previously unselected package libubsan1:amd64.
|
| 382 |
+
Preparing to unpack .../052-libubsan1_14.2.0-19_amd64.deb ...
|
| 383 |
+
Unpacking libubsan1:amd64 (14.2.0-19) ...
|
| 384 |
+
Selecting previously unselected package libhwasan0:amd64.
|
| 385 |
+
Preparing to unpack .../053-libhwasan0_14.2.0-19_amd64.deb ...
|
| 386 |
+
Unpacking libhwasan0:amd64 (14.2.0-19) ...
|
| 387 |
+
Selecting previously unselected package libquadmath0:amd64.
|
| 388 |
+
Preparing to unpack .../054-libquadmath0_14.2.0-19_amd64.deb ...
|
| 389 |
+
Unpacking libquadmath0:amd64 (14.2.0-19) ...
|
| 390 |
+
Selecting previously unselected package libgcc-14-dev:amd64.
|
| 391 |
+
Preparing to unpack .../055-libgcc-14-dev_14.2.0-19_amd64.deb ...
|
| 392 |
+
Unpacking libgcc-14-dev:amd64 (14.2.0-19) ...
|
| 393 |
+
Selecting previously unselected package gcc-14-x86-64-linux-gnu.
|
| 394 |
+
Preparing to unpack .../056-gcc-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
|
| 395 |
+
Unpacking gcc-14-x86-64-linux-gnu (14.2.0-19) ...
|
| 396 |
+
Selecting previously unselected package gcc-14.
|
| 397 |
+
Preparing to unpack .../057-gcc-14_14.2.0-19_amd64.deb ...
|
| 398 |
+
Unpacking gcc-14 (14.2.0-19) ...
|
| 399 |
+
Selecting previously unselected package gcc-x86-64-linux-gnu.
|
| 400 |
+
Preparing to unpack .../058-gcc-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
|
| 401 |
+
Unpacking gcc-x86-64-linux-gnu (4:14.2.0-1) ...
|
| 402 |
+
Selecting previously unselected package gcc.
|
| 403 |
+
Preparing to unpack .../059-gcc_4%3a14.2.0-1_amd64.deb ...
|
| 404 |
+
Unpacking gcc (4:14.2.0-1) ...
|
| 405 |
+
Selecting previously unselected package libstdc++-14-dev:amd64.
|
| 406 |
+
Preparing to unpack .../060-libstdc++-14-dev_14.2.0-19_amd64.deb ...
|
| 407 |
+
Unpacking libstdc++-14-dev:amd64 (14.2.0-19) ...
|
| 408 |
+
Selecting previously unselected package g++-14-x86-64-linux-gnu.
|
| 409 |
+
Preparing to unpack .../061-g++-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
|
| 410 |
+
Unpacking g++-14-x86-64-linux-gnu (14.2.0-19) ...
|
| 411 |
+
Selecting previously unselected package g++-14.
|
| 412 |
+
Preparing to unpack .../062-g++-14_14.2.0-19_amd64.deb ...
|
| 413 |
+
Unpacking g++-14 (14.2.0-19) ...
|
| 414 |
+
Selecting previously unselected package g++-x86-64-linux-gnu.
|
| 415 |
+
Preparing to unpack .../063-g++-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
|
| 416 |
+
Unpacking g++-x86-64-linux-gnu (4:14.2.0-1) ...
|
| 417 |
+
Selecting previously unselected package g++.
|
| 418 |
+
Preparing to unpack .../064-g++_4%3a14.2.0-1_amd64.deb ...
|
| 419 |
+
Unpacking g++ (4:14.2.0-1) ...
|
| 420 |
+
Selecting previously unselected package make.
|
| 421 |
+
Preparing to unpack .../065-make_4.4.1-2_amd64.deb ...
|
| 422 |
+
Unpacking make (4.4.1-2) ...
|
| 423 |
+
Selecting previously unselected package libdpkg-perl.
|
| 424 |
+
Preparing to unpack .../066-libdpkg-perl_1.22.22_all.deb ...
|
| 425 |
+
Unpacking libdpkg-perl (1.22.22) ...
|
| 426 |
+
Selecting previously unselected package patch.
|
| 427 |
+
Preparing to unpack .../067-patch_2.8-2_amd64.deb ...
|
| 428 |
+
Unpacking patch (2.8-2) ...
|
| 429 |
+
Selecting previously unselected package dpkg-dev.
|
| 430 |
+
Preparing to unpack .../068-dpkg-dev_1.22.22_all.deb ...
|
| 431 |
+
Unpacking dpkg-dev (1.22.22) ...
|
| 432 |
+
Selecting previously unselected package build-essential.
|
| 433 |
+
Preparing to unpack .../069-build-essential_12.12_amd64.deb ...
|
| 434 |
+
Unpacking build-essential (12.12) ...
|
| 435 |
+
Selecting previously unselected package cmake-data.
|
| 436 |
+
Preparing to unpack .../070-cmake-data_3.31.6-2_all.deb ...
|
| 437 |
+
Unpacking cmake-data (3.31.6-2) ...
|
| 438 |
+
Selecting previously unselected package libxml2:amd64.
|
| 439 |
+
Preparing to unpack .../071-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
|
| 440 |
+
Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
|
| 441 |
+
Selecting previously unselected package libarchive13t64:amd64.
|
| 442 |
+
Preparing to unpack .../072-libarchive13t64_3.7.4-4+deb13u1_amd64.deb ...
|
| 443 |
+
Unpacking libarchive13t64:amd64 (3.7.4-4+deb13u1) ...
|
| 444 |
+
Selecting previously unselected package libbrotli1:amd64.
|
| 445 |
+
Preparing to unpack .../073-libbrotli1_1.1.0-2+b7_amd64.deb ...
|
| 446 |
+
Unpacking libbrotli1:amd64 (1.1.0-2+b7) ...
|
| 447 |
+
Selecting previously unselected package libunistring5:amd64.
|
| 448 |
+
Preparing to unpack .../074-libunistring5_1.3-2_amd64.deb ...
|
| 449 |
+
Unpacking libunistring5:amd64 (1.3-2) ...
|
| 450 |
+
Selecting previously unselected package libidn2-0:amd64.
|
| 451 |
+
Preparing to unpack .../075-libidn2-0_2.3.8-2_amd64.deb ...
|
| 452 |
+
Unpacking libidn2-0:amd64 (2.3.8-2) ...
|
| 453 |
+
Selecting previously unselected package libsasl2-modules-db:amd64.
|
| 454 |
+
Preparing to unpack .../076-libsasl2-modules-db_2.1.28+dfsg1-9_amd64.deb ...
|
| 455 |
+
Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg1-9) ...
|
| 456 |
+
Selecting previously unselected package libsasl2-2:amd64.
|
| 457 |
+
Preparing to unpack .../077-libsasl2-2_2.1.28+dfsg1-9_amd64.deb ...
|
| 458 |
+
Unpacking libsasl2-2:amd64 (2.1.28+dfsg1-9) ...
|
| 459 |
+
Selecting previously unselected package libldap2:amd64.
|
| 460 |
+
Preparing to unpack .../078-libldap2_2.6.10+dfsg-1_amd64.deb ...
|
| 461 |
+
Unpacking libldap2:amd64 (2.6.10+dfsg-1) ...
|
| 462 |
+
Selecting previously unselected package libnghttp2-14:amd64.
|
| 463 |
+
Preparing to unpack .../079-libnghttp2-14_1.64.0-1.1+deb13u1_amd64.deb ...
|
| 464 |
+
Unpacking libnghttp2-14:amd64 (1.64.0-1.1+deb13u1) ...
|
| 465 |
+
Selecting previously unselected package libnghttp3-9:amd64.
|
| 466 |
+
Preparing to unpack .../080-libnghttp3-9_1.8.0-1_amd64.deb ...
|
| 467 |
+
Unpacking libnghttp3-9:amd64 (1.8.0-1) ...
|
| 468 |
+
Selecting previously unselected package libpsl5t64:amd64.
|
| 469 |
+
Preparing to unpack .../081-libpsl5t64_0.21.2-1.1+b1_amd64.deb ...
|
| 470 |
+
Unpacking libpsl5t64:amd64 (0.21.2-1.1+b1) ...
|
| 471 |
+
Selecting previously unselected package libp11-kit0:amd64.
|
| 472 |
+
Preparing to unpack .../082-libp11-kit0_0.25.5-3_amd64.deb ...
|
| 473 |
+
Unpacking libp11-kit0:amd64 (0.25.5-3) ...
|
| 474 |
+
Selecting previously unselected package libtasn1-6:amd64.
|
| 475 |
+
Preparing to unpack .../083-libtasn1-6_4.20.0-2_amd64.deb ...
|
| 476 |
+
Unpacking libtasn1-6:amd64 (4.20.0-2) ...
|
| 477 |
+
Selecting previously unselected package libgnutls30t64:amd64.
|
| 478 |
+
Preparing to unpack .../084-libgnutls30t64_3.8.9-3+deb13u4_amd64.deb ...
|
| 479 |
+
Unpacking libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
|
| 480 |
+
Selecting previously unselected package librtmp1:amd64.
|
| 481 |
+
Preparing to unpack .../085-librtmp1_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
|
| 482 |
+
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
|
| 483 |
+
Selecting previously unselected package libssh2-1t64:amd64.
|
| 484 |
+
Preparing to unpack .../086-libssh2-1t64_1.11.1-1_amd64.deb ...
|
| 485 |
+
Unpacking libssh2-1t64:amd64 (1.11.1-1) ...
|
| 486 |
+
Selecting previously unselected package libcurl4t64:amd64.
|
| 487 |
+
Preparing to unpack .../087-libcurl4t64_8.14.1-2+deb13u3_amd64.deb ...
|
| 488 |
+
Unpacking libcurl4t64:amd64 (8.14.1-2+deb13u3) ...
|
| 489 |
+
Selecting previously unselected package libjsoncpp26:amd64.
|
| 490 |
+
Preparing to unpack .../088-libjsoncpp26_1.9.6-3_amd64.deb ...
|
| 491 |
+
Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
|
| 492 |
+
Selecting previously unselected package librhash1:amd64.
|
| 493 |
+
Preparing to unpack .../089-librhash1_1.4.5-1_amd64.deb ...
|
| 494 |
+
Unpacking librhash1:amd64 (1.4.5-1) ...
|
| 495 |
+
Selecting previously unselected package libuv1t64:amd64.
|
| 496 |
+
Preparing to unpack .../090-libuv1t64_1.50.0-2_amd64.deb ...
|
| 497 |
+
Unpacking libuv1t64:amd64 (1.50.0-2) ...
|
| 498 |
+
Selecting previously unselected package cmake.
|
| 499 |
+
Preparing to unpack .../091-cmake_3.31.6-2_amd64.deb ...
|
| 500 |
+
Unpacking cmake (3.31.6-2) ...
|
| 501 |
+
Selecting previously unselected package libfakeroot:amd64.
|
| 502 |
+
Preparing to unpack .../092-libfakeroot_1.37.1.1-1_amd64.deb ...
|
| 503 |
+
Unpacking libfakeroot:amd64 (1.37.1.1-1) ...
|
| 504 |
+
Selecting previously unselected package fakeroot.
|
| 505 |
+
Preparing to unpack .../093-fakeroot_1.37.1.1-1_amd64.deb ...
|
| 506 |
+
Unpacking fakeroot (1.37.1.1-1) ...
|
| 507 |
+
Selecting previously unselected package libngtcp2-16:amd64.
|
| 508 |
+
Preparing to unpack .../094-libngtcp2-16_1.11.0-1+deb13u1_amd64.deb ...
|
| 509 |
+
Unpacking libngtcp2-16:amd64 (1.11.0-1+deb13u1) ...
|
| 510 |
+
Selecting previously unselected package libngtcp2-crypto-gnutls8:amd64.
|
| 511 |
+
Preparing to unpack .../095-libngtcp2-crypto-gnutls8_1.11.0-1+deb13u1_amd64.deb ...
|
| 512 |
+
Unpacking libngtcp2-crypto-gnutls8:amd64 (1.11.0-1+deb13u1) ...
|
| 513 |
+
Selecting previously unselected package libcurl3t64-gnutls:amd64.
|
| 514 |
+
Preparing to unpack .../096-libcurl3t64-gnutls_8.14.1-2+deb13u3_amd64.deb ...
|
| 515 |
+
Unpacking libcurl3t64-gnutls:amd64 (8.14.1-2+deb13u3) ...
|
| 516 |
+
Selecting previously unselected package liberror-perl.
|
| 517 |
+
Preparing to unpack .../097-liberror-perl_0.17030-1_all.deb ...
|
| 518 |
+
Unpacking liberror-perl (0.17030-1) ...
|
| 519 |
+
Selecting previously unselected package git-man.
|
| 520 |
+
Preparing to unpack .../098-git-man_1%3a2.47.3-0+deb13u1_all.deb ...
|
| 521 |
+
Unpacking git-man (1:2.47.3-0+deb13u1) ...
|
| 522 |
+
Selecting previously unselected package git.
|
| 523 |
+
Preparing to unpack .../099-git_1%3a2.47.3-0+deb13u1_amd64.deb ...
|
| 524 |
+
Unpacking git (1:2.47.3-0+deb13u1) ...
|
| 525 |
+
Selecting previously unselected package libalgorithm-diff-perl.
|
| 526 |
+
Preparing to unpack .../100-libalgorithm-diff-perl_1.201-1_all.deb ...
|
| 527 |
+
Unpacking libalgorithm-diff-perl (1.201-1) ...
|
| 528 |
+
Selecting previously unselected package libalgorithm-diff-xs-perl.
|
| 529 |
+
Preparing to unpack .../101-libalgorithm-diff-xs-perl_0.04-9_amd64.deb ...
|
| 530 |
+
Unpacking libalgorithm-diff-xs-perl (0.04-9) ...
|
| 531 |
+
Selecting previously unselected package libalgorithm-merge-perl.
|
| 532 |
+
Preparing to unpack .../102-libalgorithm-merge-perl_0.08-5_all.deb ...
|
| 533 |
+
Unpacking libalgorithm-merge-perl (0.08-5) ...
|
| 534 |
+
Selecting previously unselected package libfile-fcntllock-perl.
|
| 535 |
+
Preparing to unpack .../103-libfile-fcntllock-perl_0.22-4+b4_amd64.deb ...
|
| 536 |
+
Unpacking libfile-fcntllock-perl (0.22-4+b4) ...
|
| 537 |
+
Selecting previously unselected package libgfortran5:amd64.
|
| 538 |
+
Preparing to unpack .../104-libgfortran5_14.2.0-19_amd64.deb ...
|
| 539 |
+
Unpacking libgfortran5:amd64 (14.2.0-19) ...
|
| 540 |
+
Selecting previously unselected package libldap-common.
|
| 541 |
+
Preparing to unpack .../105-libldap-common_2.6.10+dfsg-1_all.deb ...
|
| 542 |
+
Unpacking libldap-common (2.6.10+dfsg-1) ...
|
| 543 |
+
Selecting previously unselected package libopenblas0-pthread:amd64.
|
| 544 |
+
Preparing to unpack .../106-libopenblas0-pthread_0.3.29+ds-3_amd64.deb ...
|
| 545 |
+
Unpacking libopenblas0-pthread:amd64 (0.3.29+ds-3) ...
|
| 546 |
+
Selecting previously unselected package libopenblas0:amd64.
|
| 547 |
+
Preparing to unpack .../107-libopenblas0_0.3.29+ds-3_amd64.deb ...
|
| 548 |
+
Unpacking libopenblas0:amd64 (0.3.29+ds-3) ...
|
| 549 |
+
Selecting previously unselected package libopenblas-pthread-dev:amd64.
|
| 550 |
+
Preparing to unpack .../108-libopenblas-pthread-dev_0.3.29+ds-3_amd64.deb ...
|
| 551 |
+
Unpacking libopenblas-pthread-dev:amd64 (0.3.29+ds-3) ...
|
| 552 |
+
Selecting previously unselected package libopenblas-dev:amd64.
|
| 553 |
+
Preparing to unpack .../109-libopenblas-dev_0.3.29+ds-3_amd64.deb ...
|
| 554 |
+
Unpacking libopenblas-dev:amd64 (0.3.29+ds-3) ...
|
| 555 |
+
Selecting previously unselected package libsasl2-modules:amd64.
|
| 556 |
+
Preparing to unpack .../110-libsasl2-modules_2.1.28+dfsg1-9_amd64.deb ...
|
| 557 |
+
Unpacking libsasl2-modules:amd64 (2.1.28+dfsg1-9) ...
|
| 558 |
+
Selecting previously unselected package libxau6:amd64.
|
| 559 |
+
Preparing to unpack .../111-libxau6_1%3a1.0.11-1_amd64.deb ...
|
| 560 |
+
Unpacking libxau6:amd64 (1:1.0.11-1) ...
|
| 561 |
+
Selecting previously unselected package libxdmcp6:amd64.
|
| 562 |
+
Preparing to unpack .../112-libxdmcp6_1%3a1.1.5-1_amd64.deb ...
|
| 563 |
+
Unpacking libxdmcp6:amd64 (1:1.1.5-1) ...
|
| 564 |
+
Selecting previously unselected package libxcb1:amd64.
|
| 565 |
+
Preparing to unpack .../113-libxcb1_1.17.0-2+b1_amd64.deb ...
|
| 566 |
+
Unpacking libxcb1:amd64 (1.17.0-2+b1) ...
|
| 567 |
+
Selecting previously unselected package libx11-data.
|
| 568 |
+
Preparing to unpack .../114-libx11-data_2%3a1.8.12-1_all.deb ...
|
| 569 |
+
Unpacking libx11-data (2:1.8.12-1) ...
|
| 570 |
+
Selecting previously unselected package libx11-6:amd64.
|
| 571 |
+
Preparing to unpack .../115-libx11-6_2%3a1.8.12-1_amd64.deb ...
|
| 572 |
+
Unpacking libx11-6:amd64 (2:1.8.12-1) ...
|
| 573 |
+
Selecting previously unselected package libxext6:amd64.
|
| 574 |
+
Preparing to unpack .../116-libxext6_2%3a1.3.4-1+b3_amd64.deb ...
|
| 575 |
+
Unpacking libxext6:amd64 (2:1.3.4-1+b3) ...
|
| 576 |
+
Selecting previously unselected package libxmuu1:amd64.
|
| 577 |
+
Preparing to unpack .../117-libxmuu1_2%3a1.1.3-3+b4_amd64.deb ...
|
| 578 |
+
Unpacking libxmuu1:amd64 (2:1.1.3-3+b4) ...
|
| 579 |
+
Selecting previously unselected package manpages-dev.
|
| 580 |
+
Preparing to unpack .../118-manpages-dev_6.9.1-1_all.deb ...
|
| 581 |
+
Unpacking manpages-dev (6.9.1-1) ...
|
| 582 |
+
Selecting previously unselected package psmisc.
|
| 583 |
+
Preparing to unpack .../119-psmisc_23.7-2_amd64.deb ...
|
| 584 |
+
Unpacking psmisc (23.7-2) ...
|
| 585 |
+
Selecting previously unselected package publicsuffix.
|
| 586 |
+
Preparing to unpack .../120-publicsuffix_20250328.1952-0.1_all.deb ...
|
| 587 |
+
Unpacking publicsuffix (20250328.1952-0.1) ...
|
| 588 |
+
Selecting previously unselected package sq.
|
| 589 |
+
Preparing to unpack .../121-sq_1.3.1-2+b2_amd64.deb ...
|
| 590 |
+
Unpacking sq (1.3.1-2+b2) ...
|
| 591 |
+
Selecting previously unselected package xauth.
|
| 592 |
+
Preparing to unpack .../122-xauth_1%3a1.1.2-1.1_amd64.deb ...
|
| 593 |
+
Unpacking xauth (1:1.1.2-1.1) ...
|
| 594 |
+
Setting up libexpat1:amd64 (2.7.1-2) ...
|
| 595 |
+
Setting up libxau6:amd64 (1:1.0.11-1) ...
|
| 596 |
+
Setting up libxdmcp6:amd64 (1:1.1.5-1) ...
|
| 597 |
+
Setting up libkeyutils1:amd64 (1.6.3-6) ...
|
| 598 |
+
Setting up libxcb1:amd64 (1.17.0-2+b1) ...
|
| 599 |
+
Setting up libgdbm-compat4t64:amd64 (1.24-2) ...
|
| 600 |
+
Setting up psmisc (23.7-2) ...
|
| 601 |
+
Setting up libcbor0.10:amd64 (0.10.2-2) ...
|
| 602 |
+
Setting up manpages (6.9.1-1) ...
|
| 603 |
+
Setting up libbrotli1:amd64 (1.1.0-2+b7) ...
|
| 604 |
+
Setting up libedit2:amd64 (3.1-20250104-1) ...
|
| 605 |
+
Setting up libsasl2-modules:amd64 (2.1.28+dfsg1-9) ...
|
| 606 |
+
Setting up libuv1t64:amd64 (1.50.0-2) ...
|
| 607 |
+
Setting up binutils-common:amd64 (2.44-3) ...
|
| 608 |
+
Setting up libnghttp2-14:amd64 (1.64.0-1.1+deb13u1) ...
|
| 609 |
+
Setting up less (668-1) ...
|
| 610 |
+
Setting up linux-libc-dev (6.12.90-2) ...
|
| 611 |
+
Setting up libctf-nobfd0:amd64 (2.44-3) ...
|
| 612 |
+
Setting up krb5-locales (1.21.3-5+deb13u1) ...
|
| 613 |
+
Setting up libcom-err2:amd64 (1.47.2-3+b11) ...
|
| 614 |
+
Setting up sq (1.3.1-2+b2) ...
|
| 615 |
+
Setting up libgomp1:amd64 (14.2.0-19) ...
|
| 616 |
+
Setting up bzip2 (1.0.8-6) ...
|
| 617 |
+
Setting up libldap-common (2.6.10+dfsg-1) ...
|
| 618 |
+
Setting up libsframe1:amd64 (2.44-3) ...
|
| 619 |
+
Setting up libfakeroot:amd64 (1.37.1.1-1) ...
|
| 620 |
+
Setting up libjansson4:amd64 (2.14-2+b3) ...
|
| 621 |
+
Setting up libkrb5support0:amd64 (1.21.3-5+deb13u1) ...
|
| 622 |
+
Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg1-9) ...
|
| 623 |
+
Setting up fakeroot (1.37.1.1-1) ...
|
| 624 |
+
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
|
| 625 |
+
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
|
| 626 |
+
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
|
| 627 |
+
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
|
| 628 |
+
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
|
| 629 |
+
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
|
| 630 |
+
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
|
| 631 |
+
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
|
| 632 |
+
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
|
| 633 |
+
Setting up rpcsvc-proto (1.4.3-1) ...
|
| 634 |
+
Setting up linux-sysctl-defaults (4.12.1) ...
|
| 635 |
+
Setting up libx11-data (2:1.8.12-1) ...
|
| 636 |
+
Setting up make (4.4.1-2) ...
|
| 637 |
+
Setting up libmpfr6:amd64 (4.2.2-1) ...
|
| 638 |
+
Setting up libjsoncpp26:amd64 (1.9.6-3) ...
|
| 639 |
+
Setting up xz-utils (5.8.1-1) ...
|
| 640 |
+
update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
|
| 641 |
+
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
|
| 642 |
+
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
|
| 643 |
+
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
|
| 644 |
+
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
|
| 645 |
+
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
|
| 646 |
+
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
|
| 647 |
+
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
|
| 648 |
+
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
|
| 649 |
+
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
|
| 650 |
+
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
|
| 651 |
+
Setting up libquadmath0:amd64 (14.2.0-19) ...
|
| 652 |
+
Setting up libp11-kit0:amd64 (0.25.5-3) ...
|
| 653 |
+
Setting up libproc2-0:amd64 (2:4.0.4-9) ...
|
| 654 |
+
Setting up libunistring5:amd64 (1.3-2) ...
|
| 655 |
+
Setting up libmpc3:amd64 (1.3.1-1+b3) ...
|
| 656 |
+
Setting up libatomic1:amd64 (14.2.0-19) ...
|
| 657 |
+
Setting up patch (2.8-2) ...
|
| 658 |
+
Setting up libk5crypto3:amd64 (1.21.3-5+deb13u1) ...
|
| 659 |
+
Setting up libsasl2-2:amd64 (2.1.28+dfsg1-9) ...
|
| 660 |
+
Setting up libgfortran5:amd64 (14.2.0-19) ...
|
| 661 |
+
Setting up libnghttp3-9:amd64 (1.8.0-1) ...
|
| 662 |
+
Setting up libubsan1:amd64 (14.2.0-19) ...
|
| 663 |
+
Setting up perl-modules-5.40 (5.40.1-6) ...
|
| 664 |
+
Setting up libhwasan0:amd64 (14.2.0-19) ...
|
| 665 |
+
Setting up libcrypt-dev:amd64 (1:4.4.38-1) ...
|
| 666 |
+
Setting up libasan8:amd64 (14.2.0-19) ...
|
| 667 |
+
Setting up procps (2:4.0.4-9) ...
|
| 668 |
+
Setting up libtasn1-6:amd64 (4.20.0-2) ...
|
| 669 |
+
Setting up git-man (1:2.47.3-0+deb13u1) ...
|
| 670 |
+
Setting up libx11-6:amd64 (2:1.8.12-1) ...
|
| 671 |
+
Setting up libngtcp2-16:amd64 (1.11.0-1+deb13u1) ...
|
| 672 |
+
Setting up cmake-data (3.31.6-2) ...
|
| 673 |
+
Setting up librhash1:amd64 (1.4.5-1) ...
|
| 674 |
+
Setting up libkrb5-3:amd64 (1.21.3-5+deb13u1) ...
|
| 675 |
+
Setting up libssh2-1t64:amd64 (1.11.1-1) ...
|
| 676 |
+
Setting up libtsan2:amd64 (14.2.0-19) ...
|
| 677 |
+
Setting up libbinutils:amd64 (2.44-3) ...
|
| 678 |
+
Setting up libfido2-1:amd64 (1.15.0-1+b1) ...
|
| 679 |
+
Setting up libisl23:amd64 (0.27-1) ...
|
| 680 |
+
Setting up libc-dev-bin (2.41-12+deb13u3) ...
|
| 681 |
+
Setting up publicsuffix (20250328.1952-0.1) ...
|
| 682 |
+
Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
|
| 683 |
+
Setting up libcc1-0:amd64 (14.2.0-19) ...
|
| 684 |
+
Setting up libldap2:amd64 (2.6.10+dfsg-1) ...
|
| 685 |
+
Setting up libxmuu1:amd64 (2:1.1.3-3+b4) ...
|
| 686 |
+
Setting up liblocale-gettext-perl (1.07-7+b1) ...
|
| 687 |
+
Setting up liblsan0:amd64 (14.2.0-19) ...
|
| 688 |
+
Setting up libitm1:amd64 (14.2.0-19) ...
|
| 689 |
+
Setting up libctf0:amd64 (2.44-3) ...
|
| 690 |
+
Setting up manpages-dev (6.9.1-1) ...
|
| 691 |
+
Setting up libopenblas0-pthread:amd64 (0.3.29+ds-3) ...
|
| 692 |
+
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
|
| 693 |
+
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
|
| 694 |
+
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/x86_64-linux-gnu/libopenblas.so.0 (libopenblas.so.0-x86_64-linux-gnu) in auto mode
|
| 695 |
+
Setting up libxext6:amd64 (2:1.3.4-1+b3) ...
|
| 696 |
+
Setting up libidn2-0:amd64 (2.3.8-2) ...
|
| 697 |
+
Setting up libperl5.40:amd64 (5.40.1-6) ...
|
| 698 |
+
Setting up perl (5.40.1-6) ...
|
| 699 |
+
Setting up libgprofng0:amd64 (2.44-3) ...
|
| 700 |
+
Setting up libgssapi-krb5-2:amd64 (1.21.3-5+deb13u1) ...
|
| 701 |
+
Setting up cpp-14-x86-64-linux-gnu (14.2.0-19) ...
|
| 702 |
+
Setting up libdpkg-perl (1.22.22) ...
|
| 703 |
+
Setting up cpp-14 (14.2.0-19) ...
|
| 704 |
+
Setting up libopenblas0:amd64 (0.3.29+ds-3) ...
|
| 705 |
+
Setting up xauth (1:1.1.2-1.1) ...
|
| 706 |
+
Setting up libc6-dev:amd64 (2.41-12+deb13u3) ...
|
| 707 |
+
Setting up libgcc-14-dev:amd64 (14.2.0-19) ...
|
| 708 |
+
Setting up libstdc++-14-dev:amd64 (14.2.0-19) ...
|
| 709 |
+
Setting up libarchive13t64:amd64 (3.7.4-4+deb13u1) ...
|
| 710 |
+
Setting up binutils-x86-64-linux-gnu (2.44-3) ...
|
| 711 |
+
Setting up cpp-x86-64-linux-gnu (4:14.2.0-1) ...
|
| 712 |
+
Setting up libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
|
| 713 |
+
Setting up libopenblas-pthread-dev:amd64 (0.3.29+ds-3) ...
|
| 714 |
+
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
|
| 715 |
+
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
|
| 716 |
+
update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/x86_64-linux-gnu/libopenblas.so (libopenblas.so-x86_64-linux-gnu) in auto mode
|
| 717 |
+
Setting up libfile-fcntllock-perl (0.22-4+b4) ...
|
| 718 |
+
Setting up libalgorithm-diff-perl (1.201-1) ...
|
| 719 |
+
Setting up openssh-client (1:10.0p1-7+deb13u4) ...
|
| 720 |
+
Setting up libpsl5t64:amd64 (0.21.2-1.1+b1) ...
|
| 721 |
+
Setting up binutils (2.44-3) ...
|
| 722 |
+
Setting up dpkg-dev (1.22.22) ...
|
| 723 |
+
Setting up liberror-perl (0.17030-1) ...
|
| 724 |
+
Setting up libopenblas-dev:amd64 (0.3.29+ds-3) ...
|
| 725 |
+
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
|
| 726 |
+
Setting up cpp (4:14.2.0-1) ...
|
| 727 |
+
Setting up gcc-14-x86-64-linux-gnu (14.2.0-19) ...
|
| 728 |
+
Setting up libalgorithm-diff-xs-perl (0.04-9) ...
|
| 729 |
+
Setting up libngtcp2-crypto-gnutls8:amd64 (1.11.0-1+deb13u1) ...
|
| 730 |
+
Setting up libalgorithm-merge-perl (0.08-5) ...
|
| 731 |
+
Setting up gcc-x86-64-linux-gnu (4:14.2.0-1) ...
|
| 732 |
+
Setting up libcurl4t64:amd64 (8.14.1-2+deb13u3) ...
|
| 733 |
+
Setting up libcurl3t64-gnutls:amd64 (8.14.1-2+deb13u3) ...
|
| 734 |
+
Setting up gcc-14 (14.2.0-19) ...
|
| 735 |
+
Setting up git (1:2.47.3-0+deb13u1) ...
|
| 736 |
+
Setting up g++-14-x86-64-linux-gnu (14.2.0-19) ...
|
| 737 |
+
Setting up g++-x86-64-linux-gnu (4:14.2.0-1) ...
|
| 738 |
+
Setting up cmake (3.31.6-2) ...
|
| 739 |
+
Setting up g++-14 (14.2.0-19) ...
|
| 740 |
+
Setting up gcc (4:14.2.0-1) ...
|
| 741 |
+
Setting up g++ (4:14.2.0-1) ...
|
| 742 |
+
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
|
| 743 |
+
Setting up build-essential (12.12) ...
|
| 744 |
+
Processing triggers for libc-bin (2.41-12+deb13u3) ...
|
| 745 |
+
DONE 14.9s
|
| 746 |
+
|
| 747 |
+
--> COPY requirements.txt .
|
| 748 |
+
DONE 0.1s
|
| 749 |
+
|
| 750 |
+
--> RUN pip install --no-cache-dir -r requirements.txt
|
| 751 |
+
Collecting gradio>=5.0.0 (from -r requirements.txt (line 2))
|
| 752 |
+
Downloading gradio-6.18.0-py3-none-any.whl.metadata (17 kB)
|
| 753 |
+
Collecting fastapi>=0.109.0 (from -r requirements.txt (line 3))
|
| 754 |
+
Downloading fastapi-0.136.3-py3-none-any.whl.metadata (27 kB)
|
| 755 |
+
Collecting uvicorn>=0.27.0 (from -r requirements.txt (line 4))
|
| 756 |
+
Downloading uvicorn-0.49.0-py3-none-any.whl.metadata (6.7 kB)
|
| 757 |
+
Collecting llama-cpp-python>=0.2.20 (from -r requirements.txt (line 5))
|
| 758 |
+
Downloading llama_cpp_python-0.3.29.tar.gz (70.0 MB)
|
| 759 |
+
âââââââââââââââââââââââââââââââââââââââ 70.0/70.0 MB 259.5 MB/s eta 0:00:00
|
| 760 |
+
Installing build dependencies: started
|
| 761 |
+
Installing build dependencies: finished with status 'done'
|
| 762 |
+
Getting requirements to build wheel: started
|
| 763 |
+
Getting requirements to build wheel: finished with status 'done'
|
| 764 |
+
Installing backend dependencies: started
|
| 765 |
+
Installing backend dependencies: finished with status 'done'
|
| 766 |
+
Preparing metadata (pyproject.toml): started
|
| 767 |
+
Preparing metadata (pyproject.toml): finished with status 'done'
|
| 768 |
+
Collecting python-dotenv>=1.0.0 (from -r requirements.txt (line 6))
|
| 769 |
+
Downloading python_dotenv-1.2.2-py3-none-any.whl.metadata (27 kB)
|
| 770 |
+
Collecting pydantic>=2.5.0 (from -r requirements.txt (line 7))
|
| 771 |
+
Downloading pydantic-2.13.4-py3-none-any.whl.metadata (109 kB)
|
| 772 |
+
âââââââââââââââââââââââââââââââââââââ 109.4/109.4 kB 443.3 MB/s eta 0:00:00
|
| 773 |
+
Collecting numpy>=1.26.0 (from -r requirements.txt (line 8))
|
| 774 |
+
Downloading numpy-2.4.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (6.6 kB)
|
| 775 |
+
Collecting anyio<5.0,>=3.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 776 |
+
Downloading anyio-4.13.0-py3-none-any.whl.metadata (4.5 kB)
|
| 777 |
+
Collecting brotli>=1.1.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 778 |
+
Downloading brotli-1.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (6.1 kB)
|
| 779 |
+
Collecting gradio-client==2.5.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 780 |
+
Downloading gradio_client-2.5.0-py3-none-any.whl.metadata (7.1 kB)
|
| 781 |
+
Collecting groovy~=0.1 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 782 |
+
Downloading groovy-0.1.2-py3-none-any.whl.metadata (6.1 kB)
|
| 783 |
+
Collecting hf-gradio<1.0,>=0.4.1 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 784 |
+
Downloading hf_gradio-0.4.1-py3-none-any.whl.metadata (428 bytes)
|
| 785 |
+
Collecting httpx<1.0,>=0.24.1 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 786 |
+
Downloading httpx-0.28.1-py3-none-any.whl.metadata (7.1 kB)
|
| 787 |
+
Collecting huggingface-hub<2.0,>=1.2.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 788 |
+
Downloading huggingface_hub-1.19.0-py3-none-any.whl.metadata (14 kB)
|
| 789 |
+
Collecting jinja2<4.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 790 |
+
Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB)
|
| 791 |
+
Collecting markupsafe<4.0,>=2.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 792 |
+
Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.7 kB)
|
| 793 |
+
Collecting orjson~=3.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 794 |
+
Downloading orjson-3.11.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (41 kB)
|
| 795 |
+
âââââââââââââââââââââââââââââââââââââââ 42.0/42.0 kB 309.9 MB/s eta 0:00:00
|
| 796 |
+
Collecting packaging (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 797 |
+
Downloading packaging-26.2-py3-none-any.whl.metadata (3.5 kB)
|
| 798 |
+
Collecting pandas<4.0,>=1.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 799 |
+
Downloading pandas-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.metadata (79 kB)
|
| 800 |
+
âââââââââââââââââââââââââââââââââââââââ 79.5/79.5 kB 384.2 MB/s eta 0:00:00
|
| 801 |
+
Collecting pillow<13.0,>=8.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 802 |
+
Downloading pillow-12.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (8.8 kB)
|
| 803 |
+
Collecting pydub<1.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 804 |
+
Downloading pydub-0.25.1-py2.py3-none-any.whl.metadata (1.4 kB)
|
| 805 |
+
Collecting python-multipart<1.0,>=0.0.18 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 806 |
+
Downloading python_multipart-0.0.32-py3-none-any.whl.metadata (2.1 kB)
|
| 807 |
+
Collecting pytz>=2017.2 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 808 |
+
Downloading pytz-2026.2-py2.py3-none-any.whl.metadata (22 kB)
|
| 809 |
+
Collecting pyyaml<7.0,>=5.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 810 |
+
Downloading pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.4 kB)
|
| 811 |
+
Collecting safehttpx<0.2.0,>=0.1.7 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 812 |
+
Downloading safehttpx-0.1.7-py3-none-any.whl.metadata (4.2 kB)
|
| 813 |
+
Collecting semantic-version~=2.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 814 |
+
Downloading semantic_version-2.10.0-py2.py3-none-any.whl.metadata (9.7 kB)
|
| 815 |
+
Collecting starlette<2.0,>=1.0.1 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 816 |
+
Downloading starlette-1.3.1-py3-none-any.whl.metadata (6.4 kB)
|
| 817 |
+
Collecting tomlkit<0.15.0,>=0.12.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 818 |
+
Downloading tomlkit-0.14.0-py3-none-any.whl.metadata (2.8 kB)
|
| 819 |
+
Collecting typer<1.0,>=0.12 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 820 |
+
Downloading typer-0.26.7-py3-none-any.whl.metadata (16 kB)
|
| 821 |
+
Collecting typing-extensions~=4.0 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 822 |
+
Downloading typing_extensions-4.15.0-py3-none-any.whl.metadata (3.3 kB)
|
| 823 |
+
Collecting fsspec (from gradio-client==2.5.0->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 824 |
+
Downloading fsspec-2026.4.0-py3-none-any.whl.metadata (10 kB)
|
| 825 |
+
Collecting typing-inspection>=0.4.2 (from fastapi>=0.109.0->-r requirements.txt (line 3))
|
| 826 |
+
Downloading typing_inspection-0.4.2-py3-none-any.whl.metadata (2.6 kB)
|
| 827 |
+
Collecting annotated-doc>=0.0.2 (from fastapi>=0.109.0->-r requirements.txt (line 3))
|
| 828 |
+
Downloading annotated_doc-0.0.4-py3-none-any.whl.metadata (6.6 kB)
|
| 829 |
+
Collecting click>=7.0 (from uvicorn>=0.27.0->-r requirements.txt (line 4))
|
| 830 |
+
Downloading click-8.4.1-py3-none-any.whl.metadata (2.6 kB)
|
| 831 |
+
Collecting h11>=0.8 (from uvicorn>=0.27.0->-r requirements.txt (line 4))
|
| 832 |
+
Downloading h11-0.16.0-py3-none-any.whl.metadata (8.3 kB)
|
| 833 |
+
Collecting diskcache>=5.6.1 (from llama-cpp-python>=0.2.20->-r requirements.txt (line 5))
|
| 834 |
+
Downloading diskcache-5.6.3-py3-none-any.whl.metadata (20 kB)
|
| 835 |
+
Collecting annotated-types>=0.6.0 (from pydantic>=2.5.0->-r requirements.txt (line 7))
|
| 836 |
+
Downloading annotated_types-0.7.0-py3-none-any.whl.metadata (15 kB)
|
| 837 |
+
Collecting pydantic-core==2.46.4 (from pydantic>=2.5.0->-r requirements.txt (line 7))
|
| 838 |
+
Downloading pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.6 kB)
|
| 839 |
+
Collecting idna>=2.8 (from anyio<5.0,>=3.0->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 840 |
+
Downloading idna-3.18-py3-none-any.whl.metadata (6.1 kB)
|
| 841 |
+
Collecting certifi (from httpx<1.0,>=0.24.1->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 842 |
+
Downloading certifi-2026.5.20-py3-none-any.whl.metadata (2.5 kB)
|
| 843 |
+
Collecting httpcore==1.* (from httpx<1.0,>=0.24.1->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 844 |
+
Downloading httpcore-1.0.9-py3-none-any.whl.metadata (21 kB)
|
| 845 |
+
Collecting filelock>=3.10.0 (from huggingface-hub<2.0,>=1.2.0->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 846 |
+
Downloading filelock-3.29.4-py3-none-any.whl.metadata (2.0 kB)
|
| 847 |
+
Collecting hf-xet<2.0.0,>=1.5.1 (from huggingface-hub<2.0,>=1.2.0->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 848 |
+
Downloading hf_xet-1.5.1-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (4.9 kB)
|
| 849 |
+
Collecting tqdm>=4.42.1 (from huggingface-hub<2.0,>=1.2.0->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 850 |
+
Downloading tqdm-4.68.2-py3-none-any.whl.metadata (58 kB)
|
| 851 |
+
âââââââââââââââââââââââââââââââââââââââ 58.7/58.7 kB 343.0 MB/s eta 0:00:00
|
| 852 |
+
Collecting typer<1.0,>=0.12 (from gradio>=5.0.0->-r requirements.txt (line 2))
|
| 853 |
+
Downloading typer-0.25.1-py3-none-any.whl.metadata (15 kB)
|
| 854 |
+
Collecting python-dateutil>=2.8.2 (from pandas<4.0,>=1.0->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 855 |
+
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB)
|
| 856 |
+
Collecting shellingham>=1.3.0 (from typer<1.0,>=0.12->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 857 |
+
Downloading shellingham-1.5.4-py2.py3-none-any.whl.metadata (3.5 kB)
|
| 858 |
+
Collecting rich>=13.8.0 (from typer<1.0,>=0.12->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 859 |
+
Downloading rich-15.0.0-py3-none-any.whl.metadata (18 kB)
|
| 860 |
+
Collecting six>=1.5 (from python-dateutil>=2.8.2->pandas<4.0,>=1.0->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 861 |
+
Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB)
|
| 862 |
+
Collecting markdown-it-py>=2.2.0 (from rich>=13.8.0->typer<1.0,>=0.12->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 863 |
+
Downloading markdown_it_py-4.2.0-py3-none-any.whl.metadata (7.4 kB)
|
| 864 |
+
Collecting pygments<3.0.0,>=2.13.0 (from rich>=13.8.0->typer<1.0,>=0.12->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 865 |
+
Downloading pygments-2.20.0-py3-none-any.whl.metadata (2.5 kB)
|
| 866 |
+
Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=13.8.0->typer<1.0,>=0.12->gradio>=5.0.0->-r requirements.txt (line 2))
|
| 867 |
+
Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB)
|
| 868 |
+
Downloading gradio-6.18.0-py3-none-any.whl (31.2 MB)
|
| 869 |
+
ââââââââââââââââââââââââââââââââââââââââ 31.2/31.2 MB 250.6 MB/s eta 0:00:00
|
| 870 |
+
Downloading gradio_client-2.5.0-py3-none-any.whl (59 kB)
|
| 871 |
+
ââââââââââââââââââââââââââââââââââââââââ 60.0/60.0 kB 370.9 MB/s eta 0:00:00
|
| 872 |
+
Downloading fastapi-0.136.3-py3-none-any.whl (117 kB)
|
| 873 |
+
âââââââââââââââââââââââââââââââââââââââ 117.5/117.5 kB 409.9 MB/s eta 0:00:00
|
| 874 |
+
Downloading uvicorn-0.49.0-py3-none-any.whl (71 kB)
|
| 875 |
+
ââââââââââââââââââââââââââââââââââââââââ 71.4/71.4 kB 399.4 MB/s eta 0:00:00
|
| 876 |
+
Downloading python_dotenv-1.2.2-py3-none-any.whl (22 kB)
|
| 877 |
+
Downloading pydantic-2.13.4-py3-none-any.whl (472 kB)
|
| 878 |
+
âââââââââââââââââââââââââââââââââââââââ 472.3/472.3 kB 485.2 MB/s eta 0:00:00
|
| 879 |
+
Downloading pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB)
|
| 880 |
+
ââââââââââââââââââââââââââââââââââââââââ 2.1/2.1 MB 468.7 MB/s eta 0:00:00
|
| 881 |
+
Downloading numpy-2.4.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.9 MB)
|
| 882 |
+
ââââââââââââââââââââââââââââââââââââââââ 16.9/16.9 MB 444.1 MB/s eta 0:00:00
|
| 883 |
+
Downloading annotated_doc-0.0.4-py3-none-any.whl (5.3 kB)
|
| 884 |
+
Downloading annotated_types-0.7.0-py3-none-any.whl (13 kB)
|
| 885 |
+
Downloading anyio-4.13.0-py3-none-any.whl (114 kB)
|
| 886 |
+
âââââââââââââââââââââââââââââââââââââââ 114.4/114.4 kB 424.5 MB/s eta 0:00:00
|
| 887 |
+
Downloading brotli-1.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.4 MB)
|
| 888 |
+
ââââââââââââââââââââââââââââââââââââââââ 1.4/1.4 MB 185.7 MB/s eta 0:00:00
|
| 889 |
+
Downloading click-8.4.1-py3-none-any.whl (116 kB)
|
| 890 |
+
âââââââââââââââââââââââââââââââââââââââ 116.6/116.6 kB 448.4 MB/s eta 0:00:00
|
| 891 |
+
Downloading diskcache-5.6.3-py3-none-any.whl (45 kB)
|
| 892 |
+
ââââââââââââââââââââââââââââââââââââââââ 45.5/45.5 kB 344.8 MB/s eta 0:00:00
|
| 893 |
+
Downloading groovy-0.1.2-py3-none-any.whl (14 kB)
|
| 894 |
+
Downloading h11-0.16.0-py3-none-any.whl (37 kB)
|
| 895 |
+
Downloading hf_gradio-0.4.1-py3-none-any.whl (4.5 kB)
|
| 896 |
+
Downloading httpx-0.28.1-py3-none-any.whl (73 kB)
|
| 897 |
+
ââââââââââââââââââââââââââââââââââââââââ 73.5/73.5 kB 384.7 MB/s eta 0:00:00
|
| 898 |
+
Downloading httpcore-1.0.9-py3-none-any.whl (78 kB)
|
| 899 |
+
ââââââââââââââââââââââââââââââââââââââââ 78.8/78.8 kB 396.0 MB/s eta 0:00:00
|
| 900 |
+
Downloading huggingface_hub-1.19.0-py3-none-any.whl (693 kB)
|
| 901 |
+
âââââââââââââââââââââââââââââââââââââââ 693.4/693.4 kB 503.6 MB/s eta 0:00:00
|
| 902 |
+
Downloading jinja2-3.1.6-py3-none-any.whl (134 kB)
|
| 903 |
+
âââââââââââââââââââââââââââââââââââââââ 134.9/134.9 kB 420.0 MB/s eta 0:00:00
|
| 904 |
+
Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22 kB)
|
| 905 |
+
Downloading orjson-3.11.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133 kB)
|
| 906 |
+
âââââââââââââââââââââââââââââââââââââââ 134.0/134.0 kB 303.4 MB/s eta 0:00:00
|
| 907 |
+
Downloading packaging-26.2-py3-none-any.whl (100 kB)
|
| 908 |
+
âââââââââââââââââââââââââââââââââââââââ 100.2/100.2 kB 401.3 MB/s eta 0:00:00
|
| 909 |
+
Downloading pandas-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.3 MB)
|
| 910 |
+
ââââââââââââââââââââââââââââââââââââââââ 11.3/11.3 MB 243.3 MB/s eta 0:00:00
|
| 911 |
+
Downloading pillow-12.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (7.1 MB)
|
| 912 |
+
ââââââââââââââââââââââââââââââââââââââââ 7.1/7.1 MB 414.2 MB/s eta 0:00:00
|
| 913 |
+
Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB)
|
| 914 |
+
Downloading python_multipart-0.0.32-py3-none-any.whl (30 kB)
|
| 915 |
+
Downloading pytz-2026.2-py2.py3-none-any.whl (510 kB)
|
| 916 |
+
âââââââââââââââââââââââââââââââââââââââ 510.1/510.1 kB 439.6 MB/s eta 0:00:00
|
| 917 |
+
Downloading pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (806 kB)
|
| 918 |
+
âââââââââââââââââââââââââââââââââââââââ 806.6/806.6 kB 503.3 MB/s eta 0:00:00
|
| 919 |
+
Downloading safehttpx-0.1.7-py3-none-any.whl (9.0 kB)
|
| 920 |
+
Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB)
|
| 921 |
+
Downloading starlette-1.3.1-py3-none-any.whl (73 kB)
|
| 922 |
+
ââââââââââââââââââââââââââââââââââââââââ 73.6/73.6 kB 294.5 MB/s eta 0:00:00
|
| 923 |
+
Downloading tomlkit-0.14.0-py3-none-any.whl (39 kB)
|
| 924 |
+
Downloading typer-0.25.1-py3-none-any.whl (58 kB)
|
| 925 |
+
ââââââââââââââââââââââââââââââââââââââââ 58.4/58.4 kB 359.8 MB/s eta 0:00:00
|
| 926 |
+
Downloading typing_extensions-4.15.0-py3-none-any.whl (44 kB)
|
| 927 |
+
ââââââââââââââââââââââââââââââââââââââââ 44.6/44.6 kB 350.0 MB/s eta 0:00:00
|
| 928 |
+
Downloading typing_inspection-0.4.2-py3-none-any.whl (14 kB)
|
| 929 |
+
Downloading filelock-3.29.4-py3-none-any.whl (42 kB)
|
| 930 |
+
ââââââââââââââââââââââââââââââââââââââââ 42.8/42.8 kB 345.3 MB/s eta 0:00:00
|
| 931 |
+
Downloading fsspec-2026.4.0-py3-none-any.whl (203 kB)
|
| 932 |
+
âââââââââââââââââââââââââââââââââââââââ 203.4/203.4 kB 428.3 MB/s eta 0:00:00
|
| 933 |
+
Downloading hf_xet-1.5.1-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.5 MB)
|
| 934 |
+
ââââââââââââââââââââââââââââââââââââââââ 4.5/4.5 MB 452.4 MB/s eta 0:00:00
|
| 935 |
+
Downloading idna-3.18-py3-none-any.whl (65 kB)
|
| 936 |
+
ââââââââââââââââââââââââââââââââââââââââ 65.5/65.5 kB 381.5 MB/s eta 0:00:00
|
| 937 |
+
Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB)
|
| 938 |
+
âââââââââââââââââââââââââââââââââââââââ 229.9/229.9 kB 438.9 MB/s eta 0:00:00
|
| 939 |
+
Downloading rich-15.0.0-py3-none-any.whl (310 kB)
|
| 940 |
+
âââââââ��âââââââââââââââââââââââââââââââ 310.7/310.7 kB 481.5 MB/s eta 0:00:00
|
| 941 |
+
Downloading shellingham-1.5.4-py2.py3-none-any.whl (9.8 kB)
|
| 942 |
+
Downloading tqdm-4.68.2-py3-none-any.whl (78 kB)
|
| 943 |
+
ââââââââââââââââââââââââââââââââââââââââ 78.6/78.6 kB 396.2 MB/s eta 0:00:00
|
| 944 |
+
Downloading certifi-2026.5.20-py3-none-any.whl (134 kB)
|
| 945 |
+
âââââââââââââââââââââââââââââââââââââââ 134.1/134.1 kB 432.1 MB/s eta 0:00:00
|
| 946 |
+
Downloading markdown_it_py-4.2.0-py3-none-any.whl (91 kB)
|
| 947 |
+
ââââââââââââââââââââââââââââââââââââââââ 91.7/91.7 kB 406.4 MB/s eta 0:00:00
|
| 948 |
+
Downloading pygments-2.20.0-py3-none-any.whl (1.2 MB)
|
| 949 |
+
ââââââââââââââââââââââââââââââââââââââââ 1.2/1.2 MB 471.4 MB/s eta 0:00:00
|
| 950 |
+
Downloading six-1.17.0-py2.py3-none-any.whl (11 kB)
|
| 951 |
+
Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB)
|
| 952 |
+
Building wheels for collected packages: llama-cpp-python
|
| 953 |
+
Building wheel for llama-cpp-python (pyproject.toml): started
|
| 954 |
+
Building wheel for llama-cpp-python (pyproject.toml): still running...
|