pola-rs / polars

Dataframes powered by a multithreaded, vectorized query engine, written in Rust
https://docs.pola.rs
Other
27.24k stars 1.67k forks source link

chore(rust,python): Create .devcontainer #9697

Closed tschm closed 9 months ago

tschm commented 11 months ago

Closes https://github.com/pola-rs/polars/issues/9690

tschm commented 11 months ago

@stinodego FYI

tschm commented 11 months ago

There's also a Microsoft container for rust. Not sure into which direction you want to head with this. Please adjust as you please...

tschm commented 11 months ago

Install rust without any interaction in startup.sh

tschm commented 11 months ago

error: could not compile polars-core (lib)

after

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source "$HOME/.cargo/env"

cd py-polars

make build
make test
eitsupi commented 11 months ago

Dev Container Feature makes it easy to set up Rust. Why not do it?

tschm commented 11 months ago

@eitsupi, I set up rust as described on the Polars web page. What's your suggestion? Using a rust container and install python in there? Using a rust container that comes already with python?

eitsupi commented 11 months ago

@tschm For example, the following:

{
    "image": "mcr.microsoft.com/devcontainers/rust:1-bullseye",
    "features": {
        "ghcr.io/devcontainers/features/python:1": {
            "installTools": true,
            "version": "os-provided"
        }
    }
}
tschm commented 11 months ago

Ok, I have learnt a lot about Rust and the underlying compilers. Here's the script I managed to construct using the documentation

rustc --version
cargo --version

cd py-polars

# both make build and make build-release have the same problem
make build-release

This runs in a container as suggested by @eitsupi above. Unfortunately, the Maturin step keeps failing (I have tried numerous variations). The error message I get is

Compiling polars-row v0.30.0 (/workspaces/polars/polars/polars-row)
    Building [======================>  ] 331/351: libgit2-sys(build), polar...
   Building [======================>  ] 331/351: libgit2-sys(build), polar...
   Compiling polars-core v0.30.0 (/workspaces/polars/polars/polars-core)
    Building [======================>  ] 332/351: libgit2-sys(build), polar...
error: could not compile `polars-core` (lib)
Caused by:
  process didn't exit successfully: `/usr/local/rustup/toolchains/nightly-2023-06-23-x86_64-unknown-linux-gnu/bin/rustc --crate-name polars_core --edition=2021 /workspaces/polars/polars/polars-core/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --diagnostic-width=80 --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C linker-plugin-lto -C codegen-units=1 --cfg 'feature="abs"' --cfg 'feature="asof_join"' --cfg 'feature="chrono"' --cfg 'feature="chrono-tz"' --cfg 'feature="chunked_ids"' --cfg 'feature="comfy-table"' --cfg 'feature="concat_str"' --cfg 'feature="cross_join"' --cfg 'feature="cum_agg"' --cfg 'feature="dataframe_arithmetic"' --cfg 'feature="default"' --cfg 'feature="diagonal_concat"' --cfg 'feature="diff"' --cfg 'feature="docs"' --cfg 'feature="dot_product"' --cfg 'feature="dtype-array"' --cfg 'feature="dtype-categorical"' --cfg 'feature="dtype-date"' --cfg 'feature="dtype-datetime"' --cfg 'feature="dtype-decimal"' --cfg 'feature="dtype-duration"...
warning: build failed, waiting for other jobs to finish...
tschm commented 11 months ago

@eitsupi I am a bit lost and I am running out of time. I have created a Dockerfile trying to mimic what I have done on my local machine. Note that I can run make build on my local machine. I am for now using a Python docker image and install rustc, cargo, the linker gcc and cmake (via build-essential). I still struggle with the linker?

I add the output:

Building [=======================> ] 340/342: py-polars(build)            
Building[=======================> ] 341/342: py-polars                   error: linking with `cc` failed: exit status: 1
  |
  = note: LC_ALL="C" PATH="/home/vscode/.rustup/toolchains/nightly-2023-06-23-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/bin:/workspaces/polars/py-polars/.venv/bin:/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/share/nvm/current/bin:/usr/local/bin:/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/share/nvm/current/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/vscode/.cargo/bin:/home/vscode/.local/bin" VSLANG="1033" "cc" "-Wl,--version-script=/tmp/rustcJiCchC/list" "-Wl,--no-undefined-version" "-m64" "/tmp/rustcJiCchC/symbols.o" "/workspaces/polars/py-polars/target/debug/deps/polars.11jjymxtx3h3y8la.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.12rch68rz0xi1eb2.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.13ag9j0tyjjkezh9.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.13bbi9l8qwom7mxu.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.13h10f0s5y9s5wuz.rcgu.o...
  = note: collect2: fatal error: ld terminated with signal 15 [Terminated]
          compilation terminated.

    Building [=======================> ] 341/342: py-polars     
tschm commented 11 months ago

The gcc compiler seems to be quite old

vscode ➜ / $ gcc --version
gcc (Debian 10.2.1-6) 10.2.1 20210110
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
tschm commented 11 months ago

@eitsupi I think the linker is not working as my account is filled up. Need to clean a few things and come back to this tomorrow...

stinodego commented 11 months ago

Thanks for looking into this. I'm not really experienced with devcontainers so I can't be of much help here.

tschm commented 11 months ago

@stinodego I think a helpful move could be to merge this pull request into a devcontainer branch. You can then setup prebuilds of the image (to make it fast for your users). You keep this for a few days and then merge devcontainer branch into main... To understand what's going on: In .devcontainer Dockerfile I define a standard image that should look very familiar if you have compiled polars from scratch before. The magic happens in the startup.sh program that runs the make build...

eitsupi commented 11 months ago

@eitsupi I am a bit lost and I am running out of time. I have created a Dockerfile trying to mimic what I have done on my local machine. Note that I can run make build on my local machine. I am for now using a Python docker image and install rustc, cargo, the linker gcc and cmake (via build-essential). I still struggle with the linker?

I add the output:

Building [=======================> ] 340/342: py-polars(build)            
Building[=======================> ] 341/342: py-polars                   error: linking with `cc` failed: exit status: 1
  |
  = note: LC_ALL="C" PATH="/home/vscode/.rustup/toolchains/nightly-2023-06-23-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/bin:/workspaces/polars/py-polars/.venv/bin:/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/share/nvm/current/bin:/usr/local/bin:/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/share/nvm/current/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/vscode/.cargo/bin:/home/vscode/.local/bin" VSLANG="1033" "cc" "-Wl,--version-script=/tmp/rustcJiCchC/list" "-Wl,--no-undefined-version" "-m64" "/tmp/rustcJiCchC/symbols.o" "/workspaces/polars/py-polars/target/debug/deps/polars.11jjymxtx3h3y8la.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.12rch68rz0xi1eb2.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.13ag9j0tyjjkezh9.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.13bbi9l8qwom7mxu.rcgu.o" "/workspaces/polars/py-polars/target/debug/deps/polars.13h10f0s5y9s5wuz.rcgu.o...
  = note: collect2: fatal error: ld terminated with signal 15 [Terminated]
          compilation terminated.

    Building [=======================> ] 341/342: py-polars     

I suspect this is simply due to lack of resources on the machine. Because building polars requires a large amount of machine resources, Codespace, with its lowest specs, is clearly underspecified. I recommend that you try with local Docker.

Do you think changing the installation methods from devcontainer.json to a shell script or Dockerfile would contribute anything to resolving things? (I don't think so.)

tschm commented 11 months ago

@eitsupi I have built the underlying Docker image which comes it at approximately 2.8 GB. I am currently cleaning up my use of prebuilds across my profile as I am right at the maximum. Please note that devcontainer.json is pointing to a Docker file.

The image does not contain any polars specific stuff. It's python with rust. Hence it would be faster to host this image in a registry and download from there every time a user is building a devcontainer or using the feature approach you have suggested above.

In a first iteration polars could get away without hosting any prebuilds. However, it would then take 10 minutes to compile Polars on request and most of the convenience would be lost. Those minutes are mainly lost in the compilation of maturin. It's not the installation of rustc, cargo, etc.

Hence I would suggest to start with devcontainers on a dedicated branch and see whether the pola-rs account is powerful enough to host prebuilds.

eitsupi commented 11 months ago

@tschm My point is that there is probably little advantage to installing Rust and Python without using Dev Container Features. Codespaces uses the Dev Container CLI to build the image, so you can still build the image from the devcontainer.json I presented.

tschm commented 11 months ago

Ok, it works with a proper machine. I have managed to fire up a devcontainer on a 64 GB ram US-West 2 server. @eitsupi I am using a Dockerfile to mimic my local setup and to simplify the local debugging. Going forward I think one could use the feature idea.

eitsupi commented 11 months ago

Another advice is that if this is only for py-polars instead of rust-polars, place these in .devcontainer/py-polars/ instead of .devcontainer. If we want to work only with Rust, we do not need to build py-polars at the container starting point.

tschm commented 11 months ago

@eitsupi I am convinced there is no need for the startup.sh hack. The devcontainer cli probably exposes something nicer. However, I failed with it...

eitsupi commented 11 months ago

I am convinced there is no need for the startup.sh hack.

I supporse "postCreateCommand": "cd py-polars && make build" is sufficient? https://containers.dev/implementors/json_reference/#lifecycle-scripts

(As far as I know, postCreateCommand is traditionally used for this use case.)

tschm commented 11 months ago

Ok, the devcontainers for rust already contain gcc and cmake.

tschm commented 11 months ago

The devcontainers are screaming for power though.

tschm commented 11 months ago

To try the devcontainers go to

https://codespaces.new/tschm/polars

tschm commented 11 months ago

Ok, that was a long D-Tour :-) Thank you @eitsupi. I got far too distracted by the linking issues which were indeed just a result of the weak performance of my laptop and the chosen GitHub server. I learnt a great deal in the process and the result is terse & elegant. Users can now develop code directly in a container exposing all the standard tools needed to do so --- including an IDE. I expose only one devcontainer complete with rust and python in there. However, I don't perform a make build in the construction process of the container. A user can do that if needed (and even return later to his/her container)...

tschm commented 11 months ago

Only two files have been changed. The devcontainer.json file describing the container and the README with a link to the GUI to specify the server used for the container. I recommend the 16 core machine with 64 GB ram.

tschm commented 11 months ago

Please ignore the large number of commits and perform a squeeze if you merge...

tschm commented 11 months ago

Glad to hear you were able to accomplish this!

I think this will work (I haven't tried it here), but have some minor comments.

Thank you @eitsupi. I have fixed the Python version to 3.10 and do not install the extra tools, e.g. pylint. They are defined in the requirements files... There's a problem when I do a "cargo test" from the command line in the devcontainer. It doesn't seem to be a container problem though... Please fire up a container. @ritchie46 Do you feel comfortable with the concept? Shall I explain more what this is good for?

eitsupi commented 11 months ago

I have fixed the Python version to 3.10

I am not sure if this is a good idea, since ghcr.io/devcontainers/features/python:1 may try to build Python from source. (Please check the source https://github.com/devcontainers/features/tree/main/src/python) If there is no reason to stick with a particular version of Python, I recommend using os-provided.

tschm commented 11 months ago

I have fixed the Python version to 3.10

I am not sure if this is a good idea, since ghcr.io/devcontainers/features/python:1 may try to build Python from source. (Please check the source https://github.com/devcontainers/features/tree/main/src/python) If there is no reason to stick with a particular version of Python, I recommend using os-provided.

Ok, good idea. It's the standard choice. I could drop it...

tschm commented 11 months ago

That's a bit surprising...

@tschm ➜ /workspaces/polars (main) $ cargo test
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   /workspaces/polars/polars-cli/Cargo.toml
workspace: /workspaces/polars/Cargo.toml
   Compiling polars-ops v0.30.0 (/workspaces/polars/polars/polars-ops)
   Compiling polars-core v0.30.0 (/workspaces/polars/polars/polars-core)
   Compiling polars-time v0.30.0 (/workspaces/polars/polars/polars-time)
   Compiling polars-io v0.30.0 (/workspaces/polars/polars/polars-io)
error[E0433]: failed to resolve: use of undeclared crate or module `serde_json`
  --> polars/polars-core/src/serde/mod.rs:13:20
   |
13 |         let json = serde_json::to_string(&ca).unwrap();
   |                    ^^^^^^^^^^ use of undeclared crate or module `serde_json`
universalmind303 commented 11 months ago

That's a bit surprising...

@tschm ➜ /workspaces/polars (main) $ cargo test
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   /workspaces/polars/polars-cli/Cargo.toml
workspace: /workspaces/polars/Cargo.toml
   Compiling polars-ops v0.30.0 (/workspaces/polars/polars/polars-ops)
   Compiling polars-core v0.30.0 (/workspaces/polars/polars/polars-core)
   Compiling polars-time v0.30.0 (/workspaces/polars/polars/polars-time)
   Compiling polars-io v0.30.0 (/workspaces/polars/polars/polars-io)
error[E0433]: failed to resolve: use of undeclared crate or module `serde_json`
  --> polars/polars-core/src/serde/mod.rs:13:20
   |
13 |         let json = serde_json::to_string(&ca).unwrap();
   |                    ^^^^^^^^^^ use of undeclared crate or module `serde_json`

the polars dev workflow isn't guaranteed to work with anything outside of the provided make commands.

tschm commented 11 months ago

I wonder whether dprint, cmake, fmt etc. should be all preinstalled in the devcontainer. This should probably be addressed in a 2nd issue...

tschm commented 11 months ago

@eitsupi I am now installing the tools required by polars using startup.sh. Please have a look. I assume there would be no need to hardcode the date for the toolchain as I currently do. Also make pre-commit (in polars) and make test (in py-polars) work. However, make test (in polars) does not work. The error message is not exactly helpful (for me):

Compiling polars-json v0.30.0 (/workspaces/polars/polars/polars-json)
warning: unused `Result` that must be used
   --> polars/polars-core/src/chunked_array/ops/explode.rs:425:9
    |
425 |         builder.append_series(&Series::new("", &[1, 2, 3, 3]));
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: this `Result` may be an `Err` variant, which should be handled
    = note: `#[warn(unused_must_use)]` on by default

The devcontainer will be a rather helpful tool once such problems have been erased...

tschm commented 11 months ago

The startup.sh file

#!/bin/bash
cargo --version
rustc --version

toolchain="nightly-2023-06-23"

# follow https://github.com/pola-rs/polars/blob/main/CONTRIBUTING.md#setting-up-your-environment
rustup toolchain install ${toolchain}-x86_64-unknown-linux-gnu --component miri

# add https://github.com/rust-lang/rustfmt
rustup component add rustfmt --toolchain ${toolchain}-x86_64-unknown-linux-gnu
rustup component add clippy --toolchain ${toolchain}-x86_64-unknown-linux-gnu

# Install dprint, see https://dprint.dev/install/
# this will be slower since it builds from the source
cargo install --locked dprint

# install cmake
sudo apt-get update && sudo apt-get install -y cmake
eitsupi commented 11 months ago
tschm commented 11 months ago

@eitsupi once more thank you very much. I kept the installation of dependencies in the startup.sh but I agree with the idea that they should go in the long run into a Makefile (which I dare to touch). I am still irritated by the make test in the container (if applied in the polars folder).

tschm commented 11 months ago

I have managed to run all tests in the polars folders. In a first attempt make test failed as the linker lost its mojo (despite 64 GB ram). A second make test pulled through. All tests passed. The warning message unused Result seems to be accepted. It's not something the devcontainer can or should address. It's just a replication of the environment you work in when you run stuff locally. I think the devcontainer can be most helpful as it is simpler running in such a container than trying to setup the environment needed locally. At the same time it's trivial to work on an extremely powerful machine for very little money...

stinodego commented 10 months ago

Apologies, I haven't been able to take a look at this yet. Will try to soon!

stinodego commented 9 months ago

@tschm I finally got around to giving this a look. Thanks so much for the effort, but I cannot merge this in its current form.

I tried running this on the latest main branch (with updated Rust version in the startup.sh), but it fails to create the container, then manages to run it in recovery mode (see logs below). However, cargo is not available so there's not much you can do.

Running this in VSCode locally from a Windows PC, I get it running on the second try, but performance is absolutely abysmal. Basically, unworkable.

I think to make the devcontainer actually useful, a few things need to happen:

I need a PR where I can read the newly added documentation, follow the easy steps, and then get a working environment where I can easily change some code, test it, and whip up a new PR. Without having to go through all the steps I would have to go through when setting up my environment locally.

I don't have much experience with devcontainers, so I cannot really give you any good pointers for setting this up. But hopefully it's clear what I'm looking for.

I will close this for now, though I definitely welcome an updated PR that fulfills the requirements above! Just re-open the PR when it's done.

Log details from GitHub codespaces:

``` ================================================================================= 2023-09-06 17:05:12.768Z: Configuration starting... 2023-09-06 17:05:12.781Z: Cloning... 2023-09-06 17:05:12.823Z: $ git -C "/var/lib/docker/codespacemount/workspace" clone --branch "devcontainer" --depth 1 https://github.com/stinodego/polars "/var/lib/docker/codespacemount/workspace/polars" 2023-09-06 17:05:12.846Z: Cloning into '/var/lib/docker/codespacemount/workspace/polars'... 2023-09-06 17:05:15.221Z: git process exited with exit code 0 2023-09-06 17:05:15.223Z: $ git -C "/var/lib/docker/codespacemount/workspace/polars" config --local remote.origin.fetch +refs/heads/*:refs/remotes/origin/* 2023-09-06 17:05:15.228Z: git process exited with exit code 0 ================================================================================= 2023-09-06 17:05:15.805Z: Creating container... 2023-09-06 17:05:15.811Z: $ devcontainer up --id-label Type=codespaces --workspace-folder /var/lib/docker/codespacemount/workspace/polars --mount type=bind,source=/.codespaces/agent/mount/cache,target=/vscode --user-data-folder /var/lib/docker/codespacemount/.persistedshare --container-data-folder .vscode-remote/data/Machine --container-system-data-folder /var/vscode-remote --log-level trace --log-format json --update-remote-user-uid-default never --mount-workspace-git-root false --omit-config-remote-env-from-metadata --skip-non-blocking-commands --skip-post-create --config "/var/lib/docker/codespacemount/workspace/polars/.devcontainer/devcontainer.json" --override-config /root/.codespaces/shared/merged_devcontainer.json --default-user-env-probe loginInteractiveShell --container-session-data-folder /workspaces/.codespaces/.persistedshare/devcontainers-cli/cache --secrets-file /root/.codespaces/shared/user-secrets-envs.json 2023-09-06 17:05:16.022Z: @devcontainers/cli 0.48.0. Node.js v18.17.1. linux 5.15.0-1041-azure x64. 2023-09-06 17:05:16.508Z: Resolving Feature dependencies for 'ghcr.io/devcontainers/features/python:1'... 2023-09-06 17:05:18.615Z: Resolving Feature dependencies for 'ghcr.io/rocker-org/devcontainer-features/apt-packages:1'... 2023-09-06 17:05:19.480Z: Soft-dependency 'ghcr.io/devcontainers/features/oryx' is not required. Removing from installation order... 2023-09-06 17:05:19.491Z: Soft-dependency 'ghcr.io/devcontainers/features/common-utils' is not required. Removing from installation order... 2023-09-06 17:05:19.496Z: Soft-dependency 'ghcr.io/devcontainers/features/common-utils' is not required. Removing from installation order... 2023-09-06 17:05:20.168Z: $1-bookworm --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -t vsc-polars-ca3aad875c7584c836de8725fc88c38cfc561fdacb4a0f5736e9d923bf521e9b-features -f /tmp/devcontainercli-root/container-features/0.48.0-1694019916482/Dockerfile.extended /var/lib/docker/codespacemount/.persistedshare/empty-folder 2023-09-06 17:05:20.619Z: #0 building with "default" instance using docker driver #1 [internal] load .dockerignore 2023-09-06 17:05:20.919Z: #1 transferring context: 2B done2023-09-06 17:05:20.950Z: 2023-09-06 17:05:21.201Z: #1 DONE 0.6s 2023-09-06 17:05:21.205Z: #2 [internal] load build definition from Dockerfile.extended #2 transferring dockerfile: 3.92kB done #2 DONE 0.7s 2023-09-06 17:05:21.352Z: #3 resolve image config for docker.io/docker/dockerfile:1.4 2023-09-06 17:05:21.653Z: #3 ... #4 [auth] docker/dockerfile:pull token for registry-1.docker.io #4 DONE 0.0s 2023-09-06 17:05:21.804Z: #3 resolve image config for docker.io/docker/dockerfile:1.4 2023-09-06 17:05:23.157Z: #3 DONE 1.8s #5 docker-image://docker.io/docker/dockerfile:1.4@sha256:9ba7531bd80fb0a858632727cf7a112fbfd19b17e94c4e84ced81e24ef1a0dbc #5 resolve docker.io/docker/dockerfile:1.4@sha256:9ba7531bd80fb0a858632727cf7a112fbfd19b17e94c4e84ced81e24ef1a0dbc2023-09-06 17:05:23.160Z: 2023-09-06 17:05:23.293Z: #5 resolve docker.io/docker/dockerfile:1.4@sha256:9ba7531bd80fb0a858632727cf7a112fbfd19b17e94c4e84ced81e24ef1a0dbc 0.1s done2023-09-06 17:05:23.295Z: #5 sha256:ad87fb03593d1b71f9a1cfc1406c4aafcb253b1dabebf569768d6e6166836f34 528B / 528B done #5 sha256:1e8a16826fd1c80a63fa6817a9c7284c94e40cded14a9b0d0d3722356efa47bd 2.37kB / 2.37kB done #5 sha256:9ba7531bd80fb0a858632727cf7a112fbfd19b17e94c4e84ced81e24ef1a0dbc 2.00kB / 2.00kB done 2023-09-06 17:05:23.393Z: #5 sha256:1328b32c40fca9bcf9d70d8eccb72eb873d1124d72dadce04db8badbe7b08546 0B / 9.94MB 0.1s 2023-09-06 17:05:23.505Z: #5 sha256:1328b32c40fca9bcf9d70d8eccb72eb873d1124d72dadce04db8badbe7b08546 9.52MB / 9.94MB 0.2s 2023-09-06 17:05:23.791Z: #5 sha256:1328b32c40fca9bcf9d70d8eccb72eb873d1124d72dadce04db8badbe7b08546 9.94MB / 9.94MB 0.3s done #5 extracting sha256:1328b32c40fca9bcf9d70d8eccb72eb873d1124d72dadce04db8badbe7b08546 0.1s 2023-09-06 17:05:23.941Z: #5 extracting sha256:1328b32c40fca9bcf9d70d8eccb72eb873d1124d72dadce04db8badbe7b08546 0.2s done 2023-09-06 17:05:24.231Z: #5 DONE 1.2s 2023-09-06 17:05:24.682Z: #6 [context dev_containers_feature_content_source] load .dockerignore 2023-09-06 17:05:24.816Z: #6 transferring dev_containers_feature_content_source:2023-09-06 17:05:24.822Z: 2023-09-06 17:05:24.932Z: #6 transferring dev_containers_feature_content_source: 2B done #6 DONE 0.3s 2023-09-06 17:05:24.934Z: #7 [internal] load metadata for mcr.microsoft.com/devcontainers/rust:1-bookworm 2023-09-06 17:05:25.533Z: #7 DONE 0.8s 2023-09-06 17:05:25.684Z: #8 [dev_containers_feature_content_normalize 1/3] FROM mcr.microsoft.com/devcontainers/rust:1-bookworm@sha256:e5e299edd583385fd34fbe5020a5efadb6d27594b7d47667b84e50298848ac9c2023-09-06 17:05:25.685Z: 2023-09-06 17:05:25.686Z: #8 resolve mcr.microsoft.com/devcontainers/rust:1-bookworm@sha256:e5e299edd583385fd34fbe5020a5efadb6d27594b7d47667b84e50298848ac9c2023-09-06 17:05:25.690Z: 2023-09-06 17:05:25.955Z: #8 resolve mcr.microsoft.com/devcontainers/rust:1-bookworm@sha256:e5e299edd583385fd34fbe5020a5efadb6d27594b7d47667b84e50298848ac9c 0.2s done 2023-09-06 17:05:26.107Z: #8 ...2023-09-06 17:05:26.109Z: #9 [context dev_containers_feature_content_source] load from client #9 transferring dev_containers_feature_content_source: 57.59kB done #9 DONE 0.4s #8 [dev_containers_feature_content_normalize 1/3] FROM mcr.microsoft.com/devcontainers/rust:1-bookworm@sha256:e5e299edd583385fd34fbe5020a5efadb6d27594b7d47667b84e50298848ac9c #8 sha256:e5e299edd583385fd34fbe5020a5efadb6d27594b7d47667b84e50298848ac9c 1.61kB / 1.61kB done #8 sha256:d0bad46ed61870d24f4755c3ff6570e52c93b21e14be46e2b5b629da27d92325 2.78kB / 2.78kB done #8 sha256:17bb06436a9df6e8609ef67600931384bc58c106efe1e01bab5bd1894c68979e 14.86kB / 14.86kB done 2023-09-06 17:05:26.369Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 0B / 186.97MB 0.4s 2023-09-06 17:05:26.520Z: #8 sha256:4d390d6bb7327f7f4a4058410f24c6f86559785f4ef99565abbecc563f8f4a8f 0B / 15.06MB 0.5s #8 sha256:1c4d090ac8f0c89c1f72ab40b75d7cb5c291a6aab63733953c3c066419b3745a 0B / 409B 0.5s 2023-09-06 17:05:26.670Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 15.73MB / 186.97MB 0.7s2023-09-06 17:05:26.674Z: 2023-09-06 17:05:26.677Z: #8 sha256:4d390d6bb7327f7f4a4058410f24c6f86559785f4ef99565abbecc563f8f4a8f 6.29MB / 15.06MB 0.7s2023-09-06 17:05:26.681Z: 2023-09-06 17:05:26.684Z: #8 sha256:1c4d090ac8f0c89c1f72ab40b75d7cb5c291a6aab63733953c3c066419b3745a 409B / 409B 0.6s done2023-09-06 17:05:26.687Z: 2023-09-06 17:05:26.788Z: #8 sha256:4d390d6bb7327f7f4a4058410f24c6f86559785f4ef99565abbecc563f8f4a8f 15.06MB / 15.06MB 0.8s 2023-09-06 17:05:26.790Z: #8 sha256:b229bb12e083b53b92db480cb86ab2c5259f8e7acfb1381e9fc2b1cde5f6543c 0B / 134B 0.8s 2023-09-06 17:05:26.941Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 30.41MB / 186.97MB 0.9s 2023-09-06 17:05:26.942Z: #8 sha256:b229bb12e083b53b92db480cb86ab2c5259f8e7acfb1381e9fc2b1cde5f6543c 134B / 134B 0.9s 2023-09-06 17:05:27.069Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 46.14MB / 186.97MB 1.1s #8 sha256:4d390d6bb7327f7f4a4058410f24c6f86559785f4ef99565abbecc563f8f4a8f 15.06MB / 15.06MB 1.0s done2023-09-06 17:05:27.073Z: #8 sha256:b229bb12e083b53b92db480cb86ab2c5259f8e7acfb1381e9fc2b1cde5f6543c 134B / 134B 1.1s done #8 sha256:52ee671b6aeaa62a1a7cea1cb5eeb6cd04f9ea0287e635967b375e417b6f2219 0B / 222B 1.1s 2023-09-06 17:05:27.224Z: #8 sha256:52ee671b6aeaa62a1a7cea1cb5eeb6cd04f9ea0287e635967b375e417b6f2219 222B / 222B 1.2s done #8 sha256:66a8b15d4a4639b0b8650ffd5a1005e36df0d36b9efa8f1335519982cd6d33e7 0B / 233B 1.2s 2023-09-06 17:05:27.374Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 60.82MB / 186.97MB 1.3s 2023-09-06 17:05:27.375Z: #8 sha256:c5a499dc4c818dbe305181bee283c0436007cd1b80c9f0485fde9ea23c9c56a1 0B / 47.30MB 1.3s 2023-09-06 17:05:27.524Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 77.59MB / 186.97MB 1.5s #8 sha256:66a8b15d4a4639b0b8650ffd5a1005e36df0d36b9efa8f1335519982cd6d33e7 233B / 233B 1.3s done 2023-09-06 17:05:27.532Z: #8 sha256:c5a499dc4c818dbe305181bee283c0436007cd1b80c9f0485fde9ea23c9c56a1 16.78MB / 47.30MB 1.5s #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 0B / 63.13MB 1.5s 2023-09-06 17:05:27.672Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 92.27MB / 186.97MB 1.7s #8 sha256:c5a499dc4c818dbe305181bee283c0436007cd1b80c9f0485fde9ea23c9c56a1 36.70MB / 47.30MB 1.7s2023-09-06 17:05:27.683Z: 2023-09-06 17:05:27.687Z: #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 8.39MB / 63.13MB 1.7s2023-09-06 17:05:27.693Z: 2023-09-06 17:05:27.808Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 101.71MB / 186.97MB 1.8s2023-09-06 17:05:27.833Z: 2023-09-06 17:05:27.839Z: #8 sha256:c5a499dc4c818dbe305181bee283c0436007cd1b80c9f0485fde9ea23c9c56a1 47.30MB / 47.30MB 1.8s2023-09-06 17:05:27.846Z: 2023-09-06 17:05:27.876Z: #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 12.16MB / 63.13MB 1.8s 2023-09-06 17:05:27.971Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 117.44MB / 186.97MB 2.0s #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 16.78MB / 63.13MB 2.0s2023-09-06 17:05:27.973Z: 2023-09-06 17:05:28.125Z: #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 25.17MB / 63.13MB 2.1s 2023-09-06 17:05:28.272Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 133.17MB / 186.97MB 2.3s #8 sha256:c5a499dc4c818dbe305181bee283c0436007cd1b80c9f0485fde9ea23c9c56a1 47.30MB / 47.30MB 2.1s done #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 33.55MB / 63.13MB 2.3s #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 0B / 222.84MB 2.3s 2023-09-06 17:05:28.423Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 12.58MB / 222.84MB 2.4s 2023-09-06 17:05:28.569Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 153.09MB / 186.97MB 2.6s #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 47.19MB / 63.13MB 2.6s 2023-09-06 17:05:28.573Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 33.55MB / 222.84MB 2.6s 2023-09-06 17:05:28.720Z: #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 54.53MB / 63.13MB 2.7s #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 46.14MB / 222.84MB 2.7s 2023-09-06 17:05:28.876Z: #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 63.13MB / 63.13MB 2.8s 2023-09-06 17:05:28.981Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 176.16MB / 186.97MB 3.0s #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 66.06MB / 222.84MB 3.0s 2023-09-06 17:05:29.273Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 186.97MB / 186.97MB 3.3s #8 sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 63.13MB / 63.13MB 3.2s done 2023-09-06 17:05:29.285Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 95.42MB / 222.84MB 3.3s 2023-09-06 17:05:29.538Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 112.20MB / 222.84MB 3.5s 2023-09-06 17:05:29.669Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 138.41MB / 222.84MB 3.7s 2023-09-06 17:05:29.769Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 150.99MB / 222.84MB 3.8s 2023-09-06 17:05:30.022Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 175.11MB / 222.84MB 4.0s 2023-09-06 17:05:30.320Z: #8 sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 186.97MB / 186.97MB 4.1s done #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 209.72MB / 222.84MB 4.3s #8 extracting sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 2023-09-06 17:05:30.542Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 222.84MB / 222.84MB 4.5s 2023-09-06 17:05:31.882Z: #8 sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 222.84MB / 222.84MB 5.8s done 2023-09-06 17:05:35.128Z: #8 extracting sha256:1e2614365fab39a67310547ed36bb657cc3e7332273974979dd8314036eac324 4.7s done 2023-09-06 17:05:38.288Z: #8 extracting sha256:4d390d6bb7327f7f4a4058410f24c6f86559785f4ef99565abbecc563f8f4a8f 2023-09-06 17:05:39.072Z: #8 extracting sha256:4d390d6bb7327f7f4a4058410f24c6f86559785f4ef99565abbecc563f8f4a8f 0.7s done 2023-09-06 17:05:39.372Z: #8 extracting sha256:1c4d090ac8f0c89c1f72ab40b75d7cb5c291a6aab63733953c3c066419b3745a done 2023-09-06 17:05:39.476Z: #8 extracting sha256:b229bb12e083b53b92db480cb86ab2c5259f8e7acfb1381e9fc2b1cde5f6543c 2023-09-06 17:05:39.627Z: #8 extracting sha256:b229bb12e083b53b92db480cb86ab2c5259f8e7acfb1381e9fc2b1cde5f6543c done 2023-09-06 17:05:39.778Z: #8 extracting sha256:52ee671b6aeaa62a1a7cea1cb5eeb6cd04f9ea0287e635967b375e417b6f2219 done 2023-09-06 17:05:39.877Z: #8 extracting sha256:66a8b15d4a4639b0b8650ffd5a1005e36df0d36b9efa8f1335519982cd6d33e7 2023-09-06 17:05:40.028Z: #8 extracting sha256:66a8b15d4a4639b0b8650ffd5a1005e36df0d36b9efa8f1335519982cd6d33e7 done 2023-09-06 17:05:40.313Z: #8 extracting sha256:c5a499dc4c818dbe305181bee283c0436007cd1b80c9f0485fde9ea23c9c56a1 0.1s2023-09-06 17:05:40.314Z: 2023-09-06 17:05:43.057Z: #8 extracting sha256:c5a499dc4c818dbe305181bee283c0436007cd1b80c9f0485fde9ea23c9c56a1 2.8s done 2023-09-06 17:05:44.065Z: #8 extracting sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 2023-09-06 17:05:45.648Z: #8 extracting sha256:dbb69a73d7dd2c0670e4c06c0c4eb3dce7456917d566d815aa7f2f06f046e841 1.4s done 2023-09-06 17:05:46.702Z: #8 extracting sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 2023-09-06 17:05:51.588Z: #8 extracting sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 5.0s 2023-09-06 17:05:54.957Z: #8 extracting sha256:2d6d23dda85cf936f89c1d183eacd22eba93788cc2e8e37da865ef4f8889ef77 8.2s done 2023-09-06 17:06:00.036Z: #8 DONE 34.4s 2023-09-06 17:06:00.186Z: #10 [dev_containers_target_stage 2/6] RUN mkdir -p /tmp/dev-container-features 2023-09-06 17:06:00.638Z: #10 ... #11 [dev_containers_feature_content_normalize 2/3] COPY --from=dev_containers_feature_content_source devcontainer-features.builtin.env /tmp/build-features/ #11 DONE 0.4s 2023-09-06 17:06:00.788Z: #12 [dev_containers_feature_content_normalize 3/3] RUN chmod -R 0755 /tmp/build-features/ 2023-09-06 17:06:01.190Z: #12 ...2023-09-06 17:06:01.191Z: #10 [dev_containers_target_stage 2/6] RUN mkdir -p /tmp/dev-container-features #10 DONE 1.1s 2023-09-06 17:06:01.324Z: #12 [dev_containers_feature_content_normalize 3/3] RUN chmod -R 0755 /tmp/build-features/ #12 DONE 0.8s 2023-09-06 17:06:01.474Z: #13 [dev_containers_target_stage 3/6] COPY --from=dev_containers_feature_content_normalize /tmp/build-features/ /tmp/dev-container-features 2023-09-06 17:06:01.925Z: #13 DONE 0.4s 2023-09-06 17:06:01.927Z: #14 [dev_containers_target_stage 4/6] RUN echo "_CONTAINER_USER_HOME=$(getent passwd root | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env && echo "_REMOTE_USER_HOME=$(getent passwd vscode | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env 2023-09-06 17:06:02.678Z: #14 DONE 0.7s #15 [dev_containers_target_stage 5/6] RUN --mount=type=bind,from=dev_containers_feature_content_source,source=python_0,target=/tmp/build-features-src/python_0 cp -ar /tmp/build-features-src/python_0 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/python_0 && cd /tmp/dev-container-features/python_0 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/python_0 2023-09-06 17:06:03.235Z: #15 0.658 =========================================================================== #15 0.658 Feature : Python2023-09-06 17:06:03.236Z: #15 0.658 Description : Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation. #15 0.658 Id : ghcr.io/devcontainers/features/python #15 0.658 Version : 1.1.0 #15 0.658 Documentation : ********/devcontainers/features/tree/main/src/python #15 0.658 Options : #15 0.658 VERSION="os-provided" #15 0.658 INSTALLTOOLS="false" #15 0.658 OPTIMIZE="false" #15 0.658 INSTALLPATH="/usr/local/python" #15 0.658 INSTALLJUPYTERLAB="false" #15 0.658 CONFIGUREJUPYTERLABALLOWORIGIN="" #15 0.658 HTTPPROXY="" #15 0.658 =========================================================================== 2023-09-06 17:06:03.497Z: #15 0.920 find: 2023-09-06 17:06:03.648Z: '/var/lib/apt/lists/*': No such file or directory 2023-09-06 17:06:03.649Z: #15 0.927 Running apt-get update... 2023-09-06 17:06:04.244Z: #15 1.667 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] 2023-09-06 17:06:04.395Z: #15 1.688 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB] #15 1.688 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] 2023-09-06 17:06:04.547Z: #15 1.917 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8906 kB] 2023-09-06 17:06:04.696Z: #15 1.989 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [4952 B] #15 2.039 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [58.3 kB]2023-09-06 17:06:04.697Z: 2023-09-06 17:06:05.447Z: #15 2.733 Fetched 9221 kB in 1s (8147 kB/s)2023-09-06 17:06:05.449Z: 2023-09-06 17:06:05.453Z: #15 2.733 Reading package lists...2023-09-06 17:06:05.750Z: 2023-09-06 17:06:05.752Z: #15 3.108 Reading package lists...2023-09-06 17:06:06.157Z: 2023-09-06 17:06:06.159Z: #15 3.491 Building dependency tree... #15 3.580 Reading state information...2023-09-06 17:06:06.308Z: 2023-09-06 17:06:06.310Z: #15 3.672 curl is already the newest version (7.88.1-10+deb12u1).2023-09-06 17:06:06.312Z: 2023-09-06 17:06:06.313Z: #15 3.672 ca-certificates is already the newest version (20230311). #15 3.672 gnupg2 is already the newest version (2.2.40-1.1). #15 3.672 tar is already the newest version (1.34+dfsg-1.2). #15 3.672 make is already the newest version (4.3-4.1). #15 3.672 gcc is already the newest version (4:12.2.0-3). 2023-09-06 17:06:06.314Z: #15 3.672 libssl-dev is already the newest version (3.0.9-1). #15 3.672 zlib1g-dev is already the newest version (1:1.2.13.dfsg-1). #15 3.672 libncurses5-dev is already the newest version (6.4-4). #15 3.672 libbz2-dev is already the newest version (1.0.8-5+b1). #15 3.672 libreadline-dev is already the newest version (8.2-1.3). #15 3.672 libxml2-dev is already the newest version (2.9.14+dfsg-1.3~deb12u1). #15 3.672 xz-utils is already the newest version (5.4.1-0.2). #15 3.672 libgdbm-dev is already the newest version (1.23-3). #15 3.672 dirmngr is already the newest version (2.2.40-1.1). #15 3.672 libsqlite3-dev is already the newest version (3.40.1-2). #15 3.672 libffi-dev is already the newest version (3.4.4-1). #15 3.672 liblzma-dev is already the newest version (5.4.1-0.2). #15 3.672 uuid-dev is already the newest version (2.38.1-5+b1).2023-09-06 17:06:06.317Z: #15 3.672 uuid-dev set to manually installed. #15 3.672 The following additional packages will be installed: #15 3.672 fontconfig-config fonts-dejavu-core libbrotli-dev libfontconfig-dev #15 3.672 libfontconfig1 libfontconfig1-dev libfreetype-dev libfreetype6 #15 3.672 libgcrypt20-dev libgnutls-dane0 libgnutls-openssl27 libgnutls28-dev #15 3.673 libgnutlsxx30 libgpg-error-dev libidn2-dev libnspr4-dev libnss3-dev #15 3.673 libp11-kit-dev libpthread-stubs0-dev libtasn1-6-dev libtcl8.6 libtk8.6 #15 3.673 libunbound8 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1 #15 3.673 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxft-dev libxft2 #15 3.673 libxmlsec1 libxmlsec1-gcrypt libxmlsec1-gnutls libxmlsec1-nss #15 3.673 libxmlsec1-openssl libxrender-dev libxrender1 libxss-dev libxss1 nettle-dev #15 3.673 tcl tcl-dev tcl8.6 tcl8.6-dev tk tk8.6 tk8.6-dev x11-common #15 3.673 x11proto-core-dev x11proto-dev xorg-sgml-doctools xtrans-dev #15 3.674 Suggested packages:2023-09-06 17:06:06.319Z: #15 3.674 freetype2-doc libgcrypt20-doc dns-root-data gnutls-bin gnutls-doc #15 3.674 p11-kit-doc libx11-doc libxcb-doc libxext-doc tcl-doc tcl-tclreadline #15 3.674 tcl8.6-doc tk-doc tk8.6-doc #15 3.674 Recommended packages: #15 3.674 libtasn1-doc 2023-09-06 17:06:06.562Z: #15 3.984 The following NEW packages will be installed: 2023-09-06 17:06:06.664Z: #15 3.984 fontconfig-config fonts-dejavu-core libbrotli-dev libfontconfig-dev2023-09-06 17:06:06.669Z: #15 3.984 libfontconfig1 libfontconfig1-dev libfreetype-dev libfreetype6 #15 3.985 libgcrypt20-dev libgnutls-dane0 libgnutls-openssl27 libgnutls28-dev #15 3.985 libgnutlsxx30 libgpg-error-dev libidn2-dev libnspr4-dev libnss3-dev #15 3.985 libp11-kit-dev libpthread-stubs0-dev libtasn1-6-dev libtcl8.6 libtk8.6 #15 3.985 libunbound8 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxcb1 #15 3.985 libxcb1-dev libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxft-dev libxft2 #15 3.985 libxmlsec1 libxmlsec1-dev libxmlsec1-gcrypt libxmlsec1-gnutls libxmlsec1-nss #15 3.985 libxmlsec1-openssl libxrender-dev libxrender1 libxss-dev libxss1 nettle-dev #15 3.985 tcl tcl-dev tcl8.6 tcl8.6-dev tk tk-dev tk8.6 tk8.6-dev x11-common #15 3.985 x11proto-core-dev x11proto-dev xorg-sgml-doctools xtrans-dev #15 4.010 0 upgraded, 60 newly installed, 0 to remove and 1 not upgraded. #15 4.010 Need to get 17.8 MB of archives. #15 4.010 After this operation, 57.5 MB of additional disk space will be used. #15 4.010 Get:1 http://deb.debian.org/debian bookworm/main amd64 fonts-dejavu-core all 2.37-6 [1068 kB]2023-09-06 17:06:06.672Z: #15 4.019 Get:2 http://deb.debian.org/debian bookworm/main amd64 fontconfig-config amd64 2.14.1-4 [315 kB] #15 4.030 Get:3 http://deb.debian.org/debian bookworm/main amd64 libbrotli-dev amd64 1.0.9-2+b6 [287 kB] #15 4.030 Get:4 http://deb.debian.org/debian bookworm/main amd64 libfreetype6 amd64 2.12.1+dfsg-5 [399 kB] #15 4.030 Get:5 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1 amd64 2.14.1-4 [386 kB] #15 4.030 Get:6 http://deb.debian.org/debian bookworm/main amd64 libfreetype-dev amd64 2.12.1+dfsg-5 [567 kB] #15 4.030 Get:7 http://deb.debian.org/debian bookworm/main amd64 libfontconfig-dev amd64 2.14.1-4 [409 kB] #15 4.033 Get:8 http://deb.debian.org/debian bookworm/main amd64 libfontconfig1-dev amd64 2.14.1-4 [268 kB] #15 4.035 Get:9 http://deb.debian.org/debian bookworm/main amd64 libgpg-error-dev amd64 1.46-1 [133 kB] #15 4.036 Get:10 http://deb.debian.org/debian bookworm/main amd64 libgcrypt20-dev amd64 1.10.1-3 [752 kB] #15 4.043 Get:11 http://deb.debian.org/debian bookworm/main amd64 libunbound8 amd64 1.17.1-2 [548 kB] #15 4.047 Get:12 http://deb.debian.org/debian bookworm/main amd64 libgnutls-dane0 amd64 3.7.9-2 [406 kB] #15 4.049 Get:13 http://deb.debian.org/debian bookworm/main amd64 libgnutls-openssl27 amd64 3.7.9-2 [406 kB] #15 4.051 Get:14 http://deb.debian.org/debian bookworm/main amd64 libgnutlsxx30 amd64 3.7.9-2 [14.3 kB] #15 4.052 Get:15 http://deb.debian.org/debian bookworm/main amd64 libidn2-dev amd64 2.3.3-1+b1 [122 kB] #15 4.053 Get:16 http://deb.debian.org/debian bookworm/main amd64 libp11-kit-dev amd64 0.24.1-2 [172 kB] #15 4.055 Get:17 http://deb.debian.org/debian bookworm/main amd64 libtasn1-6-dev amd64 4.19.0-2 [106 kB] #15 4.056 Get:18 http://deb.debian.org/debian bookworm/main amd64 nettle-dev amd64 3.8.1-2 [1239 kB] #15 4.063 Get:19 http://deb.debian.org/debian bookworm/main amd64 libgnutls28-dev amd64 3.7.9-2 [1351 kB] #15 4.069 Get:20 http://deb.debian.org/debian bookworm/main amd64 libnspr4-dev amd64 2:4.35-1 [212 kB] #15 4.069 Get:21 http://deb.debian.org/debian bookworm/main amd64 libnss3-dev amd64 2:3.87.1-1 [245 kB] #15 4.071 Get:22 http://deb.debian.org/debian bookworm/main amd64 libpthread-stubs0-dev amd64 0.4-1 [5344 B] #15 4.072 Get:23 http://deb.debian.org/debian bookworm/main amd64 libtcl8.6 amd64 8.6.13+dfsg-2 [1035 kB] #15 4.078 Get:24 http://deb.debian.org/debian bookworm/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB] #15 4.078 Get:25 http://deb.debian.org/debian bookworm/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB] #15 4.078 Get:26 http://deb.debian.org/debian bookworm/main amd64 libxcb1 amd64 1.15-1 [144 kB] #15 4.079 Get:27 http://deb.debian.org/debian bookworm/main amd64 libx11-data all 2:1.8.4-2+deb12u1 [292 kB] #15 4.081 Get:28 http://deb.debian.org/debian bookworm/main amd64 libx11-6 amd64 2:1.8.4-2+deb12u1 [759 kB] #15 4.086 Get:29 http://deb.debian.org/debian bookworm/main amd64 libxrender1 amd64 1:0.9.10-1.1 [33.2 kB] #15 4.086 Get:30 http://deb.debian.org/debian bookworm/main amd64 libxft2 amd64 2.3.6-1 [61.8 kB] 2023-09-06 17:06:06.816Z: #15 4.086 Get:31 http://deb.debian.org/debian bookworm/main amd64 libxext6 amd64 2:1.3.4-1+b1 [52.9 kB] #15 4.087 Get:32 http://deb.debian.org/debian bookworm/main amd64 x11-common all 1:7.7+23 [252 kB] #15 4.089 Get:33 http://deb.debian.org/debian bookworm/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB] #15 4.090 Get:34 http://deb.debian.org/debian bookworm/main amd64 libtk8.6 amd64 8.6.13-2 [781 kB] #15 4.096 Get:35 http://deb.debian.org/debian bookworm/main amd64 xorg-sgml-doctools all 1:1.11-1.1 [22.1 kB] #15 4.096 Get:36 http://deb.debian.org/debian bookworm/main amd64 x11proto-dev all 2022.1-1 [599 kB]2023-09-06 17:06:06.817Z: #15 4.099 Get:37 http://deb.debian.org/debian bookworm/main amd64 libxau-dev amd64 1:1.0.9-1 [22.9 kB] #15 4.099 Get:38 http://deb.debian.org/debian bookworm/main amd64 x11proto-core-dev all 2022.1-1 [3528 B] #15 4.099 Get:39 http://deb.debian.org/debian bookworm/main amd64 libxdmcp-dev amd64 1:1.1.2-3 [42.2 kB] #15 4.100 Get:40 http://deb.debian.org/debian bookworm/main amd64 xtrans-dev all 1.4.0-1 [98.7 kB] #15 4.101 Get:41 http://deb.debian.org/debian bookworm/main amd64 libxcb1-dev amd64 1.15-1 [181 kB] #15 4.103 Get:42 http://deb.debian.org/debian bookworm/main amd64 libx11-dev amd64 2:1.8.4-2+deb12u1 [837 kB] #15 4.108 Get:43 http://deb.debian.org/debian bookworm/main amd64 libxext-dev amd64 2:1.3.4-1+b1 [107 kB] #15 4.108 Get:44 http://deb.debian.org/debian bookworm/main amd64 libxrender-dev amd64 1:0.9.10-1.1 [41.1 kB] #15 4.109 Get:45 http://deb.debian.org/debian bookworm/main amd64 libxft-dev amd64 2.3.6-1 [80.3 kB] #15 4.110 Get:46 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1 amd64 1.2.37-2 [153 kB] #15 4.111 Get:47 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1-gcrypt amd64 1.2.37-2 [44.9 kB] #15 4.112 Get:48 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1-gnutls amd64 1.2.37-2 [36.9 kB] #15 4.113 Get:49 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1-nss amd64 1.2.37-2 [64.8 kB] #15 4.114 Get:50 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1-openssl amd64 1.2.37-2 [86.6 kB] #15 4.115 Get:51 http://deb.debian.org/debian bookworm/main amd64 libxmlsec1-dev amd64 1.2.37-2 [417 kB] #15 4.118 Get:52 http://deb.debian.org/debian bookworm/main amd64 libxss-dev amd64 1:1.2.3-1 [23.5 kB] #15 4.118 Get:53 http://deb.debian.org/debian bookworm/main amd64 tcl8.6 amd64 8.6.13+dfsg-2 [120 kB] #15 4.120 Get:54 http://deb.debian.org/debian bookworm/main amd64 tcl amd64 8.6.13 [4016 B] #15 4.120 Get:55 http://deb.debian.org/debian bookworm/main amd64 tcl8.6-dev amd64 8.6.13+dfsg-2 [1023 kB] #15 4.125 Get:56 http://deb.debian.org/debian bookworm/main amd64 tcl-dev amd64 8.6.13 [6560 B] #15 4.125 Get:57 http://deb.debian.org/debian bookworm/main amd64 tk8.6 amd64 8.6.13-2 [69.4 kB] #15 4.125 Get:58 http://deb.debian.org/debian bookworm/main amd64 tk amd64 8.6.13 [4052 B] #15 4.125 Get:59 http://deb.debian.org/debian bookworm/main amd64 tk8.6-dev amd64 8.6.13-2 [781 kB] 2023-09-06 17:06:06.818Z: #15 4.131 Get:60 http://deb.debian.org/debian bookworm/main amd64 tk-dev amd64 8.6.13 [3884 B] 2023-09-06 17:06:08.018Z: #15 5.442 Preconfiguring packages ... 2023-09-06 17:06:08.148Z: #15 5.572 Fetched 17.8 MB in 0s (130 MB/s) 2023-09-06 17:06:08.419Z: #15 5.746 Selecting previously unselected package fonts-dejavu-core. #15 5.746 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% 2023-09-06 17:06:08.570Z: (Reading database ... 75% 2023-09-06 17:06:08.721Z: (Reading database ... 80% 2023-09-06 17:06:08.871Z: (Reading database ... 85% 2023-09-06 17:06:08.993Z: (Reading database ... 90% (Reading database ... 95% 2023-09-06 17:06:09.145Z: (Reading database ... 100% (Reading database ... 31901 files and directories currently installed.) #15 6.422 Preparing to unpack .../00-fonts-dejavu-core_2.37-6_all.deb ... #15 6.458 Unpacking fonts-dejavu-core (2.37-6) ... 2023-09-06 17:06:09.146Z: 2023-09-06 17:06:09.413Z: #15 6.836 Selecting previously unselected package fontconfig-config. 2023-09-06 17:06:09.548Z: #15 6.840 Preparing to unpack .../01-fontconfig-config_2.14.1-4_amd64.deb ... #15 6.972 Unpacking fontconfig-config (2.14.1-4) ... 2023-09-06 17:06:09.823Z: #15 7.207 Selecting previously unselected package libbrotli-dev:amd64. 2023-09-06 17:06:09.825Z: #15 7.210 Preparing to unpack .../02-libbrotli-dev_1.0.9-2+b6_amd64.deb ... #15 7.247 Unpacking libbrotli-dev:amd64 (1.0.9-2+b6) ... 2023-09-06 17:06:10.098Z: #15 7.522 Selecting previously unselected package libfreetype6:amd64. 2023-09-06 17:06:10.100Z: 2023-09-06 17:06:10.249Z: #15 7.527 Preparing to unpack .../03-libfreetype6_2.12.1+dfsg-5_amd64.deb ... #15 7.606 Unpacking libfreetype6:amd64 (2.12.1+dfsg-5) ... 2023-09-06 17:06:10.503Z: #15 7.885 Selecting previously unselected package libfontconfig1:amd64. 2023-09-06 17:06:10.504Z: #15 7.888 Preparing to unpack .../04-libfontconfig1_2.14.1-4_amd64.deb ... #15 7.927 Unpacking libfontconfig1:amd64 (2.14.1-4) ... 2023-09-06 17:06:10.804Z: #15 8.129 Selecting previously unselected package libfreetype-dev:amd64. #15 8.132 Preparing to unpack .../05-libfreetype-dev_2.12.1+dfsg-5_amd64.deb ... #15 8.175 Unpacking libfreetype-dev:amd64 (2.12.1+dfsg-5) ... 2023-09-06 17:06:11.105Z: #15 8.392 Selecting previously unselected package libfontconfig-dev:amd64. #15 8.395 Preparing to unpack .../06-libfontconfig-dev_2.14.1-4_amd64.deb ... 2023-09-06 17:06:11.107Z: #15 8.430 Unpacking libfontconfig-dev:amd64 (2.14.1-4) ... 2023-09-06 17:06:11.207Z: #15 8.631 Selecting previously unselected package libfontconfig1-dev:amd64. 2023-09-06 17:06:11.208Z: 2023-09-06 17:06:11.358Z: #15 8.635 Preparing to unpack .../07-libfontconfig1-dev_2.14.1-4_amd64.deb ... #15 8.671 Unpacking libfontconfig1-dev:amd64 (2.14.1-4) ... 2023-09-06 17:06:11.490Z: #15 8.875 Selecting previously unselected package libgpg-error-dev. 2023-09-06 17:06:11.491Z: #15 8.877 Preparing to unpack .../08-libgpg-error-dev_1.46-1_amd64.deb ... #15 8.914 Unpacking libgpg-error-dev (1.46-1) ... 2023-09-06 17:06:11.792Z: #15 9.109 Selecting previously unselected package libgcrypt20-dev. #15 9.111 Preparing to unpack .../09-libgcrypt20-dev_1.10.1-3_amd64.deb ... #15 9.149 Unpacking libgcrypt20-dev (1.10.1-3) ... 2023-09-06 17:06:11.793Z: 2023-09-06 17:06:12.049Z: #15 9.430 Selecting previously unselected package libunbound8:amd64. #15 9.433 Preparing to unpack .../10-libunbound8_1.17.1-2_amd64.deb ... #15 9.472 Unpacking libunbound8:amd64 (1.17.1-2) ... 2023-09-06 17:06:12.316Z: #15 9.740 Selecting previously unselected package libgnutls-dane0:amd64. 2023-09-06 17:06:12.317Z: 2023-09-06 17:06:12.467Z: #15 9.744 Preparing to unpack .../11-libgnutls-dane0_3.7.9-2_amd64.deb ... 2023-09-06 17:06:12.468Z: #15 9.783 Unpacking libgnutls-dane0:amd64 (3.7.9-2) ... 2023-09-06 17:06:12.769Z: #15 10.05 Selecting previously unselected package libgnutls-openssl27:amd64. #15 10.05 Preparing to unpack .../12-libgnutls-openssl27_3.7.9-2_amd64.deb ... #15 10.08 Unpacking libgnutls-openssl27:amd64 (3.7.9-2) ... 2023-09-06 17:06:12.890Z: #15 10.31 Selecting previously unselected package libgnutlsxx30:amd64. 2023-09-06 17:06:12.890Z: 2023-09-06 17:06:13.040Z: #15 10.32 Preparing to unpack .../13-libgnutlsxx30_3.7.9-2_amd64.deb ... #15 10.35 Unpacking libgnutlsxx30:amd64 (3.7.9-2) ... 2023-09-06 17:06:13.171Z: #15 10.55 Selecting previously unselected package libidn2-dev:amd64. 2023-09-06 17:06:13.172Z: #15 10.55 Preparing to unpack .../14-libidn2-dev_2.3.3-1+b1_amd64.deb ... #15 10.59 Unpacking libidn2-dev:amd64 (2.3.3-1+b1) ... 2023-09-06 17:06:13.472Z: #15 10.81 Selecting previously unselected package libp11-kit-dev:amd64. #15 10.81 Preparing to unpack .../15-libp11-kit-dev_0.24.1-2_amd64.deb ... #15 10.84 Unpacking libp11-kit-dev:amd64 (0.24.1-2) ... 2023-09-06 17:06:13.773Z: #15 11.05 Selecting previously unselected package libtasn1-6-dev:amd64. #15 11.05 Preparing to unpack .../16-libtasn1-6-dev_4.19.0-2_amd64.deb ... #15 11.09 Unpacking libtasn1-6-dev:amd64 (4.19.0-2) ... 2023-09-06 17:06:13.898Z: #15 11.28 Selecting previously unselected package nettle-dev:amd64. 2023-09-06 17:06:13.899Z: #15 11.29 Preparing to unpack .../17-nettle-dev_3.8.1-2_amd64.deb ... #15 11.32 Unpacking nettle-dev:amd64 (3.8.1-2) ... 2023-09-06 17:06:14.178Z: #15 11.56 Selecting previously unselected package libgnutls28-dev:amd64. 2023-09-06 17:06:14.180Z: #15 11.56 Preparing to unpack .../18-libgnutls28-dev_3.7.9-2_amd64.deb ... #15 11.60 Unpacking libgnutls28-dev:amd64 (3.7.9-2) ... 2023-09-06 17:06:14.444Z: #15 11.87 Selecting previously unselected package libnspr4-dev. 2023-09-06 17:06:14.446Z: 2023-09-06 17:06:14.594Z: #15 11.87 Preparing to unpack .../19-libnspr4-dev_2%3a4.35-1_amd64.deb ... #15 11.91 Unpacking libnspr4-dev (2:4.35-1) ... 2023-09-06 17:06:14.712Z: #15 12.10 Selecting previously unselected package libnss3-dev:amd64. 2023-09-06 17:06:14.714Z: #15 12.10 Preparing to unpack .../20-libnss3-dev_2%3a3.87.1-1_amd64.deb ... #15 12.14 Unpacking libnss3-dev:amd64 (2:3.87.1-1) ... 2023-09-06 17:06:15.013Z: #15 12.32 Selecting previously unselected package libpthread-stubs0-dev:amd64. #15 12.32 Preparing to unpack .../21-libpthread-stubs0-dev_0.4-1_amd64.deb ... #15 12.36 Unpacking libpthread-stubs0-dev:amd64 (0.4-1) ... 2023-09-06 17:06:15.314Z: #15 12.60 Selecting previously unselected package libtcl8.6:amd64. #15 12.60 Preparing to unpack .../22-libtcl8.6_8.6.13+dfsg-2_amd64.deb ... #15 12.64 Unpacking libtcl8.6:amd64 (8.6.13+dfsg-2) ... 2023-09-06 17:06:15.615Z: #15 12.94 Selecting previously unselected package libxau6:amd64. #15 12.95 Preparing to unpack .../23-libxau6_1%3a1.0.9-1_amd64.deb ... 2023-09-06 17:06:15.616Z: #15 12.98 Unpacking libxau6:amd64 (1:1.0.9-1) ... 2023-09-06 17:06:15.916Z: #15 13.22 Selecting previously unselected package libxdmcp6:amd64. #15 13.22 Preparing to unpack .../24-libxdmcp6_1%3a1.1.2-3_amd64.deb ... #15 13.26 Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... 2023-09-06 17:06:16.217Z: #15 13.50 Selecting previously unselected package libxcb1:amd64. #15 13.50 Preparing to unpack .../25-libxcb1_1.15-1_amd64.deb ... #15 13.54 Unpacking libxcb1:amd64 (1.15-1) ... 2023-09-06 17:06:16.351Z: #15 13.73 Selecting previously unselected package libx11-data. 2023-09-06 17:06:16.354Z: #15 13.74 Preparing to unpack .../26-libx11-data_2%3a1.8.4-2+deb12u1_all.deb ... #15 13.77 Unpacking libx11-data (2:1.8.4-2+deb12u1) ... 2023-09-06 17:06:16.643Z: #15 14.07 Selecting previously unselected package libx11-6:amd64. 2023-09-06 17:06:16.794Z: #15 14.07 Preparing to unpack .../27-libx11-6_2%3a1.8.4-2+deb12u1_amd64.deb ... #15 14.11 Unpacking libx11-6:amd64 (2:1.8.4-2+deb12u1) ... 2023-09-06 17:06:16.941Z: #15 14.36 Selecting previously unselected package libxrender1:amd64. 2023-09-06 17:06:16.942Z: 2023-09-06 17:06:17.092Z: #15 14.37 Preparing to unpack .../28-libxrender1_1%3a0.9.10-1.1_amd64.deb ... #15 14.40 Unpacking libxrender1:amd64 (1:0.9.10-1.1) ... 2023-09-06 17:06:17.092Z: 2023-09-06 17:06:17.207Z: #15 14.63 Selecting previously unselected package libxft2:amd64. 2023-09-06 17:06:17.209Z: 2023-09-06 17:06:17.357Z: #15 14.64 Preparing to unpack .../29-libxft2_2.3.6-1_amd64.deb ... #15 14.68 Unpacking libxft2:amd64 (2.3.6-1) ... 2023-09-06 17:06:17.501Z: #15 14.92 Selecting previously unselected package libxext6:amd64. 2023-09-06 17:06:17.502Z: 2023-09-06 17:06:17.651Z: #15 14.93 Preparing to unpack .../30-libxext6_2%3a1.3.4-1+b1_amd64.deb ... #15 14.96 Unpacking libxext6:amd64 (2:1.3.4-1+b1) ... 2023-09-06 17:06:17.951Z: #15 15.26 Selecting previously unselected package x11-common. #15 15.26 Preparing to unpack .../31-x11-common_1%3a7.7+23_all.deb ... #15 15.29 Unpacking x11-common (1:7.7+23) ... 2023-09-06 17:06:18.252Z: #15 15.55 Selecting previously unselected package libxss1:amd64. #15 15.55 Preparing to unpack .../32-libxss1_1%3a1.2.3-1_amd64.deb ... #15 15.58 Unpacking libxss1:amd64 (1:1.2.3-1) ... 2023-09-06 17:06:18.386Z: #15 15.81 Selecting previously unselected package libtk8.6:amd64. 2023-09-06 17:06:18.536Z: #15 15.81 Preparing to unpack .../33-libtk8.6_8.6.13-2_amd64.deb ... #15 15.85 Unpacking libtk8.6:amd64 (8.6.13-2) ... 2023-09-06 17:06:18.679Z: #15 16.10 Selecting previously unselected package xorg-sgml-doctools. 2023-09-06 17:06:18.829Z: #15 16.11 Preparing to unpack .../34-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ... #15 16.14 Unpacking xorg-sgml-doctools (1:1.11-1.1) ... 2023-09-06 17:06:18.953Z: #15 16.34 Selecting previously unselected package x11proto-dev. #15 16.34 Preparing to unpack .../35-x11proto-dev_2022.1-1_all.deb ... #15 16.38 Unpacking x11proto-dev (2022.1-1) ... 2023-09-06 17:06:19.207Z: #15 16.63 Selecting previously unselected package libxau-dev:amd64. 2023-09-06 17:06:19.208Z: #15 16.63 Preparing to unpack .../36-libxau-dev_1%3a1.0.9-1_amd64.deb ... 2023-09-06 17:06:19.357Z: #15 16.67 Unpacking libxau-dev:amd64 (1:1.0.9-1) ... 2023-09-06 17:06:19.477Z: #15 16.86 Selecting previously unselected package x11proto-core-dev. 2023-09-06 17:06:19.478Z: #15 16.86 Preparing to unpack .../37-x11proto-core-dev_2022.1-1_all.deb ... #15 16.90 Unpacking x11proto-core-dev (2022.1-1) ... 2023-09-06 17:06:19.778Z: #15 17.10 Selecting previously unselected package libxdmcp-dev:amd64. #15 17.11 Preparing to unpack .../38-libxdmcp-dev_1%3a1.1.2-3_amd64.deb ... #15 17.15 Unpacking libxdmcp-dev:amd64 (1:1.1.2-3) ... 2023-09-06 17:06:19.921Z: #15 17.34 Selecting previously unselected package xtrans-dev. 2023-09-06 17:06:20.071Z: #15 17.35 Preparing to unpack .../39-xtrans-dev_1.4.0-1_all.deb ... #15 17.39 Unpacking xtrans-dev (1.4.0-1) ... 2023-09-06 17:06:20.186Z: #15 17.56 Selecting previously unselected package libxcb1-dev:amd64. #15 17.57 Preparing to unpack .../40-libxcb1-dev_1.15-1_amd64.deb ... #15 17.61 Unpacking libxcb1-dev:amd64 (1.15-1) ... 2023-09-06 17:06:20.487Z: #15 17.80 Selecting previously unselected package libx11-dev:amd64. #15 17.80 Preparing to unpack .../41-libx11-dev_2%3a1.8.4-2+deb12u1_amd64.deb ... #15 17.84 Unpacking libx11-dev:amd64 (2:1.8.4-2+deb12u1) ... 2023-09-06 17:06:20.788Z: #15 18.07 Selecting previously unselected package libxext-dev:amd64. #15 18.07 Preparing to unpack .../42-libxext-dev_2%3a1.3.4-1+b1_amd64.deb ... #15 18.10 Unpacking libxext-dev:amd64 (2:1.3.4-1+b1) ... 2023-09-06 17:06:20.916Z: #15 18.30 Selecting previously unselected package libxrender-dev:amd64. 2023-09-06 17:06:20.918Z: #15 18.30 Preparing to unpack .../43-libxrender-dev_1%3a0.9.10-1.1_amd64.deb ... #15 18.34 Unpacking libxrender-dev:amd64 (1:0.9.10-1.1) ... 2023-09-06 17:06:21.217Z: #15 18.53 Selecting previously unselected package libxft-dev:amd64. #15 18.53 Preparing to unpack .../44-libxft-dev_2.3.6-1_amd64.deb ... #15 18.57 Unpacking libxft-dev:amd64 (2.3.6-1) ... 2023-09-06 17:06:21.517Z: #15 18.82 Selecting previously unselected package libxmlsec1:amd64. #15 18.82 Preparing to unpack .../45-libxmlsec1_1.2.37-2_amd64.deb ... #15 18.85 Unpacking libxmlsec1:amd64 (1.2.37-2) ... 2023-09-06 17:06:21.817Z: #15 19.11 Selecting previously unselected package libxmlsec1-gcrypt:amd64. #15 19.11 Preparing to unpack .../46-libxmlsec1-gcrypt_1.2.37-2_amd64.deb ... #15 19.14 Unpacking libxmlsec1-gcrypt:amd64 (1.2.37-2) ... 2023-09-06 17:06:21.962Z: #15 19.39 Selecting previously unselected package libxmlsec1-gnutls:amd64. 2023-09-06 17:06:22.113Z: #15 19.39 Preparing to unpack .../47-libxmlsec1-gnutls_1.2.37-2_amd64.deb ... #15 19.43 Unpacking libxmlsec1-gnutls:amd64 (1.2.37-2) ... 2023-09-06 17:06:22.256Z: #15 19.68 Selecting previously unselected package libxmlsec1-nss:amd64. 2023-09-06 17:06:22.407Z: #15 19.68 Preparing to unpack .../48-libxmlsec1-nss_1.2.37-2_amd64.deb ... #15 19.72 Unpacking libxmlsec1-nss:amd64 (1.2.37-2) ... 2023-09-06 17:06:22.533Z: #15 19.96 Selecting previously unselected package libxmlsec1-openssl:amd64. 2023-09-06 17:06:22.535Z: 2023-09-06 17:06:22.684Z: #15 19.96 Preparing to unpack .../49-libxmlsec1-openssl_1.2.37-2_amd64.deb ... #15 20.00 Unpacking libxmlsec1-openssl:amd64 (1.2.37-2) ... 2023-09-06 17:06:22.798Z: #15 20.18 Selecting previously unselected package libxmlsec1-dev. #15 20.19 Preparing to unpack .../50-libxmlsec1-dev_1.2.37-2_amd64.deb ... 2023-09-06 17:06:22.799Z: #15 20.22 Unpacking libxmlsec1-dev (1.2.37-2) ... 2023-09-06 17:06:23.065Z: #15 20.45 Selecting previously unselected package libxss-dev:amd64. #15 20.45 Preparing to unpack .../51-libxss-dev_1%3a1.2.3-1_amd64.deb ... 2023-09-06 17:06:23.068Z: #15 20.49 Unpacking libxss-dev:amd64 (1:1.2.3-1) ... 2023-09-06 17:06:23.366Z: #15 20.70 Selecting previously unselected package tcl8.6. #15 20.70 Preparing to unpack .../52-tcl8.6_8.6.13+dfsg-2_amd64.deb ... #15 20.74 Unpacking tcl8.6 (8.6.13+dfsg-2) ... 2023-09-06 17:06:23.673Z: #15 20.96 Selecting previously unselected package tcl. #15 20.96 Preparing to unpack .../53-tcl_8.6.13_amd64.deb ... #15 21.00 Unpacking tcl (8.6.13) ... 2023-09-06 17:06:23.935Z: #15 21.32 Selecting previously unselected package tcl8.6-dev:amd64. #15 21.32 Preparing to unpack .../54-tcl8.6-dev_8.6.13+dfsg-2_amd64.deb ... #15 21.36 Unpacking tcl8.6-dev:amd64 (8.6.13+dfsg-2) ... 2023-09-06 17:06:24.191Z: #15 21.61 Selecting previously unselected package tcl-dev:amd64. 2023-09-06 17:06:24.340Z: #15 21.62 Preparing to unpack .../55-tcl-dev_8.6.13_amd64.deb ... #15 21.65 Unpacking tcl-dev:amd64 (8.6.13) ... 2023-09-06 17:06:24.447Z: #15 21.87 Selecting previously unselected package tk8.6. 2023-09-06 17:06:24.448Z: 2023-09-06 17:06:24.597Z: #15 21.88 Preparing to unpack .../56-tk8.6_8.6.13-2_amd64.deb ... #15 21.91 Unpacking tk8.6 (8.6.13-2) ... 2023-09-06 17:06:24.703Z: #15 22.13 Selecting previously unselected package tk. 2023-09-06 17:06:24.704Z: 2023-09-06 17:06:24.853Z: #15 22.13 Preparing to unpack .../57-tk_8.6.13_amd64.deb ... #15 22.18 Unpacking tk (8.6.13) ... 2023-09-06 17:06:24.979Z: #15 22.36 Selecting previously unselected package tk8.6-dev:amd64. 2023-09-06 17:06:24.981Z: #15 22.37 Preparing to unpack .../58-tk8.6-dev_8.6.13-2_amd64.deb ... #15 22.40 Unpacking tk8.6-dev:amd64 (8.6.13-2) ... 2023-09-06 17:06:25.231Z: #15 22.65 Selecting previously unselected package tk-dev:amd64. 2023-09-06 17:06:25.237Z: 2023-09-06 17:06:25.381Z: #15 22.66 Preparing to unpack .../59-tk-dev_8.6.13_amd64.deb ... #15 22.69 Unpacking tk-dev:amd64 (8.6.13) ... 2023-09-06 17:06:25.502Z: #15 22.93 Setting up libnspr4-dev (2:4.35-1) ... 2023-09-06 17:06:25.611Z: #15 23.03 Setting up libxau6:amd64 (1:1.0.9-1) ... 2023-09-06 17:06:25.612Z: 2023-09-06 17:06:25.726Z: #15 23.15 Setting up libxdmcp6:amd64 (1:1.1.2-3) ... 2023-09-06 17:06:25.833Z: #15 23.26 Setting up libxcb1:amd64 (1.15-1) ... 2023-09-06 17:06:25.940Z: #15 23.36 Setting up libgnutls-openssl27:amd64 (3.7.9-2) ... 2023-09-06 17:06:26.055Z: #15 23.48 Setting up nettle-dev:amd64 (3.8.1-2) ... 2023-09-06 17:06:26.162Z: #15 23.59 Setting up x11-common (1:7.7+23) ... 2023-09-06 17:06:26.874Z: #15 24.30 invoke-rc.d: could not determine current runlevel 2023-09-06 17:06:27.025Z: #15 24.31 invoke-rc.d: policy-rc.d denied execution of restart. #15 24.35 Setting up libpthread-stubs0-dev:amd64 (0.4-1) ... 2023-09-06 17:06:27.154Z: #15 24.46 Setting up xtrans-dev (1.4.0-1) ... #15 24.58 Setting up libunbound8:amd64 (1.17.1-2) ...2023-09-06 17:06:27.271Z: 2023-09-06 17:06:27.271Z: #15 24.69 Setting up libfreetype6:amd64 (2.12.1+dfsg-5) ... 2023-09-06 17:06:27.380Z: #15 24.80 Setting up libx11-data (2:1.8.4-2+deb12u1) ... 2023-09-06 17:06:27.485Z: #15 24.91 Setting up libgpg-error-dev (1.46-1) ... 2023-09-06 17:06:27.597Z: #15 25.02 Setting up libgnutlsxx30:amd64 (3.7.9-2) ... 2023-09-06 17:06:27.704Z: #15 25.13 Setting up libtcl8.6:amd64 (8.6.13+dfsg-2) ... 2023-09-06 17:06:27.807Z: #15 25.23 Setting up fonts-dejavu-core (2.37-6) ... 2023-09-06 17:06:28.379Z: #15 25.80 Setting up libidn2-dev:amd64 (2.3.3-1+b1) ... 2023-09-06 17:06:28.381Z: 2023-09-06 17:06:28.482Z: #15 25.91 Setting up libnss3-dev:amd64 (2:3.87.1-1) ... 2023-09-06 17:06:28.484Z: 2023-09-06 17:06:28.584Z: #15 26.01 Setting up libx11-6:amd64 (2:1.8.4-2+deb12u1) ... 2023-09-06 17:06:28.693Z: #15 26.12 Setting up xorg-sgml-doctools (1:1.11-1.1) ... 2023-09-06 17:06:28.799Z: #15 26.22 Setting up libxmlsec1:amd64 (1.2.37-2) ... 2023-09-06 17:06:28.950Z: #15 26.32 Setting up libtasn1-6-dev:amd64 (4.19.0-2) ... 2023-09-06 17:06:29.100Z: #15 26.43 Setting up libbrotli-dev:amd64 (1.0.9-2+b6) ... 2023-09-06 17:06:29.399Z: #15 26.72 Setting up libp11-kit-dev:amd64 (0.24.1-2) ... #15 26.82 Setting up x11proto-dev (2022.1-1) ... 2023-09-06 17:06:29.505Z: #15 26.93 Setting up libgnutls-dane0:amd64 (3.7.9-2) ... 2023-09-06 17:06:29.609Z: #15 27.03 Setting up tcl8.6 (8.6.13+dfsg-2) ... 2023-09-06 17:06:29.610Z: 2023-09-06 17:06:29.711Z: #15 27.13 Setting up libxau-dev:amd64 (1:1.0.9-1) ... 2023-09-06 17:06:29.816Z: #15 27.24 Setting up libxrender1:amd64 (1:0.9.10-1.1) ... 2023-09-06 17:06:29.817Z: 2023-09-06 17:06:29.923Z: #15 27.35 Setting up libxmlsec1-openssl:amd64 (1.2.37-2) ... 2023-09-06 17:06:30.028Z: #15 27.45 Setting up fontconfig-config (2.14.1-4) ... 2023-09-06 17:06:30.029Z: 2023-09-06 17:06:30.479Z: #15 27.81 Setting up tcl8.6-dev:amd64 (8.6.13+dfsg-2) ... 2023-09-06 17:06:30.603Z: #15 27.92 Setting up libxext6:amd64 (2:1.3.4-1+b1) ... #15 28.03 Setting up libfreetype-dev:amd64 (2.12.1+dfsg-5) ... 2023-09-06 17:06:30.706Z: #15 28.13 Setting up libxdmcp-dev:amd64 (1:1.1.2-3) ... 2023-09-06 17:06:30.707Z: 2023-09-06 17:06:30.816Z: #15 28.24 Setting up libgcrypt20-dev (1.10.1-3) ... 2023-09-06 17:06:30.925Z: #15 28.35 Setting up x11proto-core-dev (2022.1-1) ... 2023-09-06 17:06:31.037Z: #15 28.46 Setting up libxmlsec1-gcrypt:amd64 (1.2.37-2) ... 2023-09-06 17:06:31.146Z: #15 28.57 Setting up libxmlsec1-nss:amd64 (1.2.37-2) ... 2023-09-06 17:06:31.246Z: #15 28.67 Setting up tcl (8.6.13) ... 2023-09-06 17:06:31.358Z: #15 28.78 Setting up libxss1:amd64 (1:1.2.3-1) ... 2023-09-06 17:06:31.467Z: #15 28.89 Setting up libfontconfig1:amd64 (2.14.1-4) ... 2023-09-06 17:06:31.576Z: #15 29.00 Setting up libxmlsec1-gnutls:amd64 (1.2.37-2) ... 2023-09-06 17:06:31.684Z: #15 29.11 Setting up libgnutls28-dev:amd64 (3.7.9-2) ... 2023-09-06 17:06:31.790Z: #15 29.21 Setting up libxft2:amd64 (2.3.6-1) ... 2023-09-06 17:06:31.791Z: 2023-09-06 17:06:31.910Z: #15 29.33 Setting up libxcb1-dev:amd64 (1.15-1) ... 2023-09-06 17:06:32.013Z: #15 29.44 Setting up libfontconfig-dev:amd64 (2.14.1-4) ... 2023-09-06 17:06:32.014Z: 2023-09-06 17:06:32.127Z: #15 29.55 Setting up libtk8.6:amd64 (8.6.13-2) ... 2023-09-06 17:06:32.242Z: #15 29.67 Setting up libx11-dev:amd64 (2:1.8.4-2+deb12u1) ... 2023-09-06 17:06:32.243Z: 2023-09-06 17:06:32.345Z: #15 29.77 Setting up tcl-dev:amd64 (8.6.13) ... 2023-09-06 17:06:32.451Z: #15 29.87 Setting up libxext-dev:amd64 (2:1.3.4-1+b1) ... 2023-09-06 17:06:32.558Z: #15 29.98 Setting up libxmlsec1-dev (1.2.37-2) ... 2023-09-06 17:06:32.559Z: 2023-09-06 17:06:32.666Z: #15 30.09 Setting up libxrender-dev:amd64 (1:0.9.10-1.1) ... 2023-09-06 17:06:32.778Z: #15 30.20 Setting up libxft-dev:amd64 (2.3.6-1) ... 2023-09-06 17:06:32.884Z: #15 30.31 Setting up tk8.6 (8.6.13-2) ... 2023-09-06 17:06:32.986Z: #15 30.41 Setting up libfontconfig1-dev:amd64 (2.14.1-4) ... 2023-09-06 17:06:33.086Z: #15 30.51 Setting up libxss-dev:amd64 (1:1.2.3-1) ... 2023-09-06 17:06:33.190Z: #15 30.61 Setting up tk8.6-dev:amd64 (8.6.13-2) ... 2023-09-06 17:06:33.320Z: #15 30.74 Setting up tk (8.6.13) ... 2023-09-06 17:06:33.425Z: #15 30.85 Setting up tk-dev:amd64 (8.6.13) ... 2023-09-06 17:06:33.534Z: #15 30.96 Processing triggers for man-db (2.11.2-2) ... 2023-09-06 17:06:33.535Z: 2023-09-06 17:06:35.639Z: #15 33.00 Processing triggers for libc-bin (2.36-9+deb12u1) ... 2023-09-06 17:06:38.493Z: #15 35.78 Reading package lists...2023-09-06 17:06:38.795Z: 2023-09-06 17:06:38.797Z: #15 36.15 Building dependency tree...2023-09-06 17:06:38.901Z: #15 36.23 Reading state information... #15 36.32 python3 is already the newest version (3.11.2-1+b1). #15 36.32 python3 set to manually installed. #15 36.32 The following additional packages will be installed: 2023-09-06 17:06:39.025Z: #15 36.32 blt libjs-jquery libjs-sphinxdoc libjs-underscore python3-pip-whl2023-09-06 17:06:39.027Z: 2023-09-06 17:06:39.029Z: #15 36.32 python3-setuptools python3-setuptools-whl python3-wheel python3.11-dev2023-09-06 17:06:39.030Z: 2023-09-06 17:06:39.031Z: #15 36.32 python3.11-doc python3.11-venv tk8.6-blt2.52023-09-06 17:06:39.032Z: 2023-09-06 17:06:39.033Z: #15 36.32 Suggested packages:2023-09-06 17:06:39.034Z: 2023-09-06 17:06:39.035Z: #15 36.32 blt-demo python3-examples python-setuptools-doc tix python3-tk-dbg2023-09-06 17:06:39.037Z: 2023-09-06 17:06:39.038Z: #15 36.32 Recommended packages:2023-09-06 17:06:39.039Z: 2023-09-06 17:06:39.041Z: #15 36.32 javascript-common2023-09-06 17:06:39.041Z: 2023-09-06 17:06:39.042Z: #15 36.45 The following NEW packages will be installed:2023-09-06 17:06:39.043Z: 2023-09-06 17:06:39.175Z: #15 36.45 blt libjs-jquery libjs-sphinxdoc libjs-underscore python3-dev python3-doc #15 36.45 python3-pip python3-pip-whl python3-setuptools python3-setuptools-whl #15 36.45 python3-tk python3-venv python3-wheel python3.11-dev python3.11-doc 2023-09-06 17:06:39.176Z: #15 36.45 python3.11-venv tk8.6-blt2.5 2023-09-06 17:06:39.306Z: #15 36.73 0 upgraded, 17 newly installed, 0 to remove and 1 not upgraded. #15 36.73 Need to get 19.3 MB of archives. #15 36.73 After this operation, 89.6 MB of additional disk space will be used. #15 36.73 Get:1 http://deb.debian.org/debian bookworm/main amd64 tk8.6-blt2.5 amd64 2.5.3+dfsg-4.1 [593 kB] 2023-09-06 17:06:39.457Z: #15 36.74 Get:2 http://deb.debian.org/debian bookworm/main amd64 blt amd64 2.5.3+dfsg-4.1 [14.9 kB] #15 36.74 Get:3 http://deb.debian.org/debian bookworm/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB] #15 36.74 Get:4 http://deb.debian.org/debian bookworm/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB] #15 36.74 Get:5 http://deb.debian.org/debian bookworm/main amd64 libjs-sphinxdoc all 5.3.0-4 [130 kB] #15 36.74 Get:6 http://deb.debian.org/debian bookworm/main amd64 python3.11-dev amd64 3.11.2-6 [615 kB] #15 36.75 Get:7 http://deb.debian.org/debian bookworm/main amd64 python3-dev amd64 3.11.2-1+b1 [26.2 kB] #15 36.75 Get:8 http://deb.debian.org/debian bookworm/main amd64 python3.11-doc all 3.11.2-6 [12.6 MB] #15 36.80 Get:9 http://deb.debian.org/debian bookworm/main amd64 python3-doc all 3.11.2-1 [9208 B] #15 36.80 Get:10 http://deb.debian.org/debian bookworm/main amd64 python3-setuptools all 66.1.1-1 [521 kB] #15 36.80 Get:11 http://deb.debian.org/debian bookworm/main amd64 python3-wheel all 0.38.4-2 [30.8 kB] #15 36.80 Get:12 http://deb.debian.org/debian bookworm/main amd64 python3-pip all 23.0.1+dfsg-1 [1325 kB] #15 36.81 Get:13 http://deb.debian.org/debian bookworm/main amd64 python3-pip-whl all 23.0.1+dfsg-1 [1717 kB] #15 36.82 Get:14 http://deb.debian.org/debian bookworm/main amd64 python3-setuptools-whl all 66.1.1-1 [1111 kB] #15 36.82 Get:15 http://deb.debian.org/debian bookworm/main amd64 python3-tk amd64 3.11.2-3 [98.3 kB] #15 36.82 Get:16 http://deb.debian.org/debian bookworm/main amd64 python3.11-venv amd64 3.11.2-6 [5892 B] #15 36.82 Get:17 http://deb.debian.org/debian bookworm/main amd64 python3-venv amd64 3.11.2-1+b1 [1200 B] 2023-09-06 17:06:39.889Z: #15 37.31 Fetched 19.3 MB in 0s (51.8 MB/s)2023-09-06 17:06:39.892Z: 2023-09-06 17:06:40.141Z: #15 37.48 Selecting previously unselected package tk8.6-blt2.5. #15 37.48 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 34140 files and directories currently installed.) #15 37.50 Preparing to unpack .../00-tk8.6-blt2.5_2.5.3+dfsg-4.1_amd64.deb ... #15 37.56 Unpacking tk8.6-blt2.5 (2.5.3+dfsg-4.1) ... 2023-09-06 17:06:40.400Z: #15 37.79 Selecting previously unselected package blt. #15 37.79 Preparing to unpack .../01-blt_2.5.3+dfsg-4.1_amd64.deb ... #15 37.82 Unpacking blt (2.5.3+dfsg-4.1) ... 2023-09-06 17:06:40.660Z: #15 38.08 Selecting previously unselected package libjs-jquery. 2023-09-06 17:06:40.661Z: 2023-09-06 17:06:40.811Z: #15 38.09 Preparing to unpack .../02-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... #15 38.13 Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 2023-09-06 17:06:40.952Z: #15 38.33 Selecting previously unselected package libjs-underscore. 2023-09-06 17:06:40.954Z: 2023-09-06 17:06:40.956Z: #15 38.33 Preparing to unpack .../03-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... #15 38.38 Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 2023-09-06 17:06:41.253Z: #15 38.57 Selecting previously unselected package libjs-sphinxdoc. #15 38.57 Preparing to unpack .../04-libjs-sphinxdoc_5.3.0-4_all.deb ... #15 38.61 Unpacking libjs-sphinxdoc (5.3.0-4) ... 2023-09-06 17:06:41.389Z: #15 38.81 Selecting previously unselected package python3.11-dev. 2023-09-06 17:06:41.390Z: 2023-09-06 17:06:41.540Z: #15 38.82 Preparing to unpack .../05-python3.11-dev_3.11.2-6_amd64.deb ... #15 38.85 Unpacking python3.11-dev (3.11.2-6) ... 2023-09-06 17:06:41.657Z: #15 39.08 Selecting previously unselected package python3-dev. 2023-09-06 17:06:41.658Z: 2023-09-06 17:06:41.807Z: #15 39.09 Preparing to unpack .../06-python3-dev_3.11.2-1+b1_amd64.deb ... #15 39.12 Unpacking python3-dev (3.11.2-1+b1) ... 2023-09-06 17:06:41.808Z: 2023-09-06 17:06:41.932Z: #15 39.32 Selecting previously unselected package python3.11-doc. #15 39.32 Preparing to unpack .../07-python3.11-doc_3.11.2-6_all.deb ... #15 39.36 Unpacking python3.11-doc (3.11.2-6) ... 2023-09-06 17:06:41.934Z: 2023-09-06 17:06:42.796Z: #15 40.22 Selecting previously unselected package python3-doc. 2023-09-06 17:06:42.947Z: #15 40.22 Preparing to unpack .../08-python3-doc_3.11.2-1_all.deb ... #15 40.26 Unpacking python3-doc (3.11.2-1) ... 2023-09-06 17:06:43.050Z: #15 40.47 Selecting previously unselected package python3-setuptools. 2023-09-06 17:06:43.201Z: #15 40.48 Preparing to unpack .../09-python3-setuptools_66.1.1-1_all.deb ... #15 40.51 Unpacking python3-setuptools (66.1.1-1) ... 2023-09-06 17:06:43.345Z: #15 40.77 Selecting previously unselected package python3-wheel. 2023-09-06 17:06:43.496Z: #15 40.77 Preparing to unpack .../10-python3-wheel_0.38.4-2_all.deb ... #15 40.81 Unpacking python3-wheel (0.38.4-2) ... 2023-09-06 17:06:43.613Z: #15 41.04 Selecting previously unselected package python3-pip. 2023-09-06 17:06:43.614Z: 2023-09-06 17:06:43.764Z: #15 41.04 Preparing to unpack .../11-python3-pip_23.0.1+dfsg-1_all.deb ... #15 41.08 Unpacking python3-pip (23.0.1+dfsg-1) ... 2023-09-06 17:06:44.066Z: #15 41.37 Selecting previously unselected package python3-pip-whl. 2023-09-06 17:06:44.067Z: #15 41.37 Preparing to unpack .../12-python3-pip-whl_23.0.1+dfsg-1_all.deb ... #15 41.40 Unpacking python3-pip-whl (23.0.1+dfsg-1) ... 2023-09-06 17:06:44.367Z: #15 41.66 Selecting previously unselected package python3-setuptools-whl. #15 41.66 Preparing to unpack .../13-python3-setuptools-whl_66.1.1-1_all.deb ... 2023-09-06 17:06:44.368Z: #15 41.69 Unpacking python3-setuptools-whl (66.1.1-1) ... 2023-09-06 17:06:44.670Z: #15 41.96 Selecting previously unselected package python3-tk:amd64. #15 41.96 Preparing to unpack .../14-python3-tk_3.11.2-3_amd64.deb ... #15 41.99 Unpacking python3-tk:amd64 (3.11.2-3) ... 2023-09-06 17:06:44.808Z: #15 42.23 Selecting previously unselected package python3.11-venv. 2023-09-06 17:06:44.809Z: 2023-09-06 17:06:44.960Z: #15 42.24 Preparing to unpack .../15-python3.11-venv_3.11.2-6_amd64.deb ... #15 42.27 Unpacking python3.11-venv (3.11.2-6) ... 2023-09-06 17:06:45.064Z: #15 42.45 Selecting previously unselected package python3-venv. #15 42.45 Preparing to unpack .../16-python3-venv_3.11.2-1+b1_amd64.deb ... #15 42.49 Unpacking python3-venv (3.11.2-1+b1) ... 2023-09-06 17:06:45.366Z: #15 42.69 Setting up python3-setuptools-whl (66.1.1-1) ... 2023-09-06 17:06:45.475Z: #15 42.79 Setting up tk8.6-blt2.5 (2.5.3+dfsg-4.1) ... #15 42.90 Setting up python3-setuptools (66.1.1-1) ... 2023-09-06 17:06:46.818Z: #15 44.13 Setting up python3-pip-whl (23.0.1+dfsg-1) ... #15 44.24 Setting up python3.11-dev (3.11.2-6) ... 2023-09-06 17:06:46.922Z: #15 44.35 Setting up blt (2.5.3+dfsg-4.1) ... 2023-09-06 17:06:46.923Z: 2023-09-06 17:06:47.028Z: #15 44.45 Setting up python3-tk:amd64 (3.11.2-3) ... 2023-09-06 17:06:47.329Z: #15 44.69 Setting up python3-wheel (0.38.4-2) ... 2023-09-06 17:06:47.476Z: #15 44.90 Setting up python3.11-venv (3.11.2-6) ... 2023-09-06 17:06:47.615Z: #15 45.04 Setting up python3-pip (23.0.1+dfsg-1) ... 2023-09-06 17:06:48.510Z: #15 45.93 Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 2023-09-06 17:06:48.625Z: #15 46.05 Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 2023-09-06 17:06:48.737Z: #15 46.16 Setting up python3-venv (3.11.2-1+b1) ... 2023-09-06 17:06:48.851Z: #15 46.27 Setting up python3.11-doc (3.11.2-6) ... 2023-09-06 17:06:48.957Z: #15 46.38 Setting up libjs-sphinxdoc (5.3.0-4) ... 2023-09-06 17:06:48.958Z: 2023-09-06 17:06:49.060Z: #15 46.48 Setting up python3-doc (3.11.2-1) ... 2023-09-06 17:06:49.061Z: 2023-09-06 17:06:49.163Z: #15 46.59 Setting up python3-dev (3.11.2-1+b1) ... 2023-09-06 17:06:49.270Z: #15 46.69 Processing triggers for man-db (2.11.2-2) ... 2023-09-06 17:06:49.271Z: 2023-09-06 17:06:50.156Z: #15 47.58 Processing triggers for libc-bin (2.36-9+deb12u1) ... 2023-09-06 17:06:50.157Z: 2023-09-06 17:06:50.414Z: #15 47.84 Done!2023-09-06 17:06:50.416Z: 2023-09-06 17:06:51.117Z: #15 DONE 48.5s2023-09-06 17:06:51.119Z: 2023-09-06 17:06:51.122Z: #16 [dev_containers_target_stage 6/6] RUN --mount=type=bind,from=dev_containers_feature_content_source,source=apt-packages_1,target=/tmp/build-features-src/apt-packages_1 cp -ar /tmp/build-features-src/apt-packages_1 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/apt-packages_1 && cd /tmp/dev-container-features/apt-packages_1 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/apt-packages_1 2023-09-06 17:06:51.873Z: #16 0.617 =========================================================================== #16 0.617 Feature : apt packages #16 0.617 Description : Installs packages via apt. #16 0.617 Id : ghcr.io/rocker-org/devcontainer-features/apt-packages2023-09-06 17:06:51.874Z: #16 0.617 Version : 1.0.2 #16 0.617 Documentation : ********/rocker-org/devcontainer-features/tree/main/src/apt-packages #16 0.617 Options : #16 0.617 PACKAGES="cmake" #16 0.617 UPGRADEPACKAGES="false" #16 0.617 =========================================================================== #16 0.656 find: '/var/lib/apt/lists/*': No such file or directory #16 0.657 Running apt-get update... 2023-09-06 17:06:52.023Z: #16 0.781 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] 2023-09-06 17:06:52.024Z: #16 0.787 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB] #16 0.792 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] #16 0.832 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8906 kB] 2023-09-06 17:06:52.174Z: #16 0.906 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [4952 B] #16 0.964 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [58.3 kB] 2023-09-06 17:06:52.752Z: #16 1.634 Fetched 9221 kB in 1s (10.4 MB/s) #16 1.634 Reading package lists...2023-09-06 17:06:53.204Z: #16 2.002 Reading package lists...2023-09-06 17:06:53.490Z: 2023-09-06 17:06:53.639Z: #16 2.380 Building dependency tree... #16 2.465 Reading state information... 2023-09-06 17:06:53.750Z: #16 2.556 The following additional packages will be installed: 2023-09-06 17:06:53.752Z: #16 2.557 cmake-data libarchive13 libjsoncpp25 librhash0 libuv1 #16 2.557 Suggested packages: #16 2.557 cmake-doc cmake-format elpa-cmake-mode ninja-build lrzip #16 2.592 The following NEW packages will be installed: #16 2.592 cmake cmake-data libarchive13 libjsoncpp25 librhash0 libuv1 #16 2.633 0 upgraded, 6 newly installed, 0 to remove and 1 not upgraded. #16 2.633 Need to get 11.4 MB of archives. #16 2.633 After this operation, 42.0 MB of additional disk space will be used. #16 2.633 Get:1 http://deb.debian.org/debian bookworm/main amd64 libarchive13 amd64 3.6.2-1 [343 kB] 2023-09-06 17:06:53.901Z: #16 2.650 Get:2 http://deb.debian.org/debian bookworm/main amd64 libjsoncpp25 amd64 1.9.5-4 [78.6 kB] #16 2.651 Get:3 http://deb.debian.org/debian bookworm/main amd64 librhash0 amd64 1.4.3-3 [134 kB] #16 2.652 Get:4 http://deb.debian.org/debian bookworm/main amd64 libuv1 amd64 1.44.2-1 [140 kB]2023-09-06 17:06:53.903Z: #16 2.653 Get:5 http://deb.debian.org/debian bookworm/main amd64 cmake-data all 3.25.1-1 [2026 kB] #16 2.669 Get:6 http://deb.debian.org/debian bookworm/main amd64 cmake amd64 3.25.1-1 [8692 kB] 2023-09-06 17:06:54.489Z: #16 3.371 Fetched 11.4 MB in 0s (105 MB/s)2023-09-06 17:06:54.492Z: 2023-09-06 17:06:54.624Z: #16 3.507 Selecting previously unselected package libarchive13:amd64. 2023-09-06 17:06:54.625Z: #16 3.507 (Reading database ... 2023-09-06 17:06:54.774Z: (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 36334 files and directories currently installed.) #16 3.525 Preparing to unpack .../0-libarchive13_3.6.2-1_amd64.deb ... #16 3.595 Unpacking libarchive13:amd64 (3.6.2-1) ... 2023-09-06 17:06:55.075Z: #16 3.833 Selecting previously unselected package libjsoncpp25:amd64. #16 3.836 Preparing to unpack .../1-libjsoncpp25_1.9.5-4_amd64.deb ... #16 3.882 Unpacking libjsoncpp25:amd64 (1.9.5-4) ... 2023-09-06 17:06:55.376Z: #16 4.130 Selecting previously unselected package librhash0:amd64. #16 4.133 Preparing to unpack .../2-librhash0_1.4.3-3_amd64.deb ... #16 4.175 Unpacking librhash0:amd64 (1.4.3-3) ... 2023-09-06 17:06:55.677Z: #16 4.430 Selecting previously unselected package libuv1:amd64. #16 4.433 Preparing to unpack .../3-libuv1_1.44.2-1_amd64.deb ... 2023-09-06 17:06:55.678Z: #16 4.468 Unpacking libuv1:amd64 (1.44.2-1) ... 2023-09-06 17:06:55.979Z: #16 4.745 Selecting previously unselected package cmake-data. #16 4.748 Preparing to unpack .../4-cmake-data_3.25.1-1_all.deb ... #16 4.788 Unpacking cmake-data (3.25.1-1) ... 2023-09-06 17:06:56.555Z: #16 5.400 Selecting previously unselected package cmake. #16 5.403 Preparing to unpack .../5-cmake_3.25.1-1_amd64.deb ... #16 5.438 Unpacking cmake (3.25.1-1) ... 2023-09-06 17:06:57.307Z: #16 6.114 Setting up libarchive13:amd64 (3.6.2-1) ... 2023-09-06 17:06:57.458Z: #16 6.221 Setting up libuv1:amd64 (1.44.2-1) ... 2023-09-06 17:06:57.574Z: #16 6.341 Setting up libjsoncpp25:amd64 (1.9.5-4) ... #16 6.457 Setting up librhash0:amd64 (1.4.3-3) ... 2023-09-06 17:06:57.678Z: #16 6.561 Setting up cmake-data (3.25.1-1) ... 2023-09-06 17:06:57.799Z: #16 6.682 Setting up cmake (3.25.1-1) ... 2023-09-06 17:06:57.800Z: 2023-09-06 17:06:57.909Z: #16 6.792 Processing triggers for man-db (2.11.2-2) ... 2023-09-06 17:06:59.527Z: #16 8.410 Processing triggers for libc-bin (2.36-9+deb12u1) ... 2023-09-06 17:06:59.528Z: 2023-09-06 17:06:59.828Z: #16 8.611 Done!2023-09-06 17:06:59.830Z: 2023-09-06 17:07:00.244Z: #16 DONE 9.1s2023-09-06 17:07:00.245Z: #17 exporting to image #17 exporting layers 2023-09-06 17:07:06.087Z: #17 exporting layers 5.8s done #17 writing image sha256:cad7b898dce52a210fe79204febf58ca867cd16c949ca8007ba9f33aa9e4f543 0.0s done2023-09-06 17:07:06.088Z: #17 naming to docker.io/library/vsc-polars-ca3aad875c7584c836de8725fc88c38cfc561fdacb4a0f5736e9d923bf521e9b-features 0.0s done #17 DONE 5.8s 2023-09-06 17:07:06.096Z: Stop: Run: docker buildx build --load --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.48.0-1694019916482 --build-arg _DEV_CONTAINERS_BASE_IMAGE=mcr.microsoft.com/devcontainers/rust:1-bookworm --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -t vsc-polars-ca3aad875c7584c836de8725fc88c38cfc561fdacb4a0f5736e9d923bf521e9b-features -f /tmp/devcontainercli-root/container-features/0.48.0-1694019916482/Dockerfile.extended /var/lib/docker/codespacemount/.persistedshare/empty-folder 2023-09-06 17:07:06.112Z: $127.0.0.1 --cap-add sys_nice --network host --cap-add SYS_PTRACE --security-opt seccomp=unconfined --entrypoint /bin/sh vsc-polars-ca3aad875c7584c836de8725fc88c38cfc561fdacb4a0f5736e9d923bf521e9b-features -c echo Container started 2023-09-06 17:07:06.702Z: Container started 2023-09-06 17:07:06.831Z: Outcome: success User: vscode WorkspaceFolder: /workspaces/polars 2023-09-06 17:07:06.839Z: devcontainer process exited with exit code 0 ================================================================================= 2023-09-06 17:07:07.559Z: Running blocking commands... 2023-09-06 17:07:07.562Z: $ devcontainer up --id-label Type=codespaces --workspace-folder /var/lib/docker/codespacemount/workspace/polars --mount type=bind,source=/.codespaces/agent/mount/cache,target=/vscode --user-data-folder /var/lib/docker/codespacemount/.persistedshare --container-data-folder .vscode-remote/data/Machine --container-system-data-folder /var/vscode-remote --log-level trace --log-format json --update-remote-user-uid-default never --mount-workspace-git-root false --omit-config-remote-env-from-metadata --skip-non-blocking-commands --expect-existing-container --config "/var/lib/docker/codespacemount/workspace/polars/.devcontainer/devcontainer.json" --override-config /root/.codespaces/shared/merged_devcontainer.json --default-user-env-probe loginInteractiveShell --container-session-data-folder /workspaces/.codespaces/.persistedshare/devcontainers-cli/cache --secrets-file /root/.codespaces/shared/user-secrets-envs.json 2023-09-06 17:07:07.818Z: @devcontainers/cli 0.48.0. Node.js v18.17.1. linux 5.15.0-1041-azure x64. 2023-09-06 17:07:08.007Z: Running the onCreateCommand from devcontainer.json... 2023-09-06 17:07:08.010Z: .devcontainer/startup.sh 2023-09-06 17:07:08.154Z: /bin/sh: 1: .devcontainer/startup.sh: Permission denied 2023-09-06 17:07:08.163Z: onCreateCommand failed with exit code 126. Skipping any further user-provided commands. 2023-09-06 17:07:08.168Z: Error: Command failed: /bin/sh -c .devcontainer/startup.sh 2023-09-06 17:07:08.168Z: at k8 (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:1780:130) 2023-09-06 17:07:08.169Z: at process.processTicksAndRejections (node:internal/process/task_queues:95:5) 2023-09-06 17:07:08.170Z: at async W0 (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:1772:4434) 2023-09-06 17:07:08.171Z: at async V0 (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:1772:3779) 2023-09-06 17:07:08.171Z: at async z0 (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:1772:2786) 2023-09-06 17:07:08.173Z: at async Xa (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:1772:2427) 2023-09-06 17:07:08.174Z: at async Lte (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:2007:1346) 2023-09-06 17:07:08.175Z: at async e3 (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:2007:964) 2023-09-06 17:07:08.176Z: at async Qte (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:2024:3660) 2023-09-06 17:07:08.182Z: at async Kf (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:2024:4775) 2023-09-06 17:07:08.183Z: {"outcome":"error","message":"Command failed: /bin/sh -c .devcontainer/startup.sh","description":"The onCreateCommand in the devcontainer.json failed.","containerId":"0d5cf7aeedb4befb9e5dd29ebe170a91df17b5253c5d80fc18f223bed8a66162"} 2023-09-06 17:07:08.193Z: devcontainer process exited with exit code 1 ====================================== ERROR ==================================== 2023-09-06 17:07:08.201Z: Failed to create container. ================================================================================= 2023-09-06 17:07:08.203Z: Error: Command failed: /bin/sh -c .devcontainer/startup.sh 2023-09-06 17:07:08.204Z: Error code: 1302 (UnifiedContainersErrorFatalCreatingContainer) ====================================== ERROR ==================================== 2023-09-06 17:07:08.208Z: Container creation failed. ================================================================================= 2023-09-06 17:07:08.515Z: ===================================== WARNING =================================== 2023-09-06 17:07:08.517Z: Creating recovery container. ================================================================================= ================================================================================= 2023-09-06 17:08:02.168Z: Creating container... 2023-09-06 17:08:02.169Z: $ devcontainer up --id-label Type=codespaces --workspace-folder /var/lib/docker/codespacemount/workspace/polars --mount type=bind,source=/.codespaces/agent/mount/cache,target=/vscode --user-data-folder /var/lib/docker/codespacemount/.persistedshare --container-data-folder .vscode-remote/data/Machine --container-system-data-folder /var/vscode-remote --log-level trace --log-format json --update-remote-user-uid-default never --mount-workspace-git-root false --omit-config-remote-env-from-metadata --skip-non-blocking-commands --skip-post-create --config "/var/lib/docker/codespacemount/workspace/polars/.devcontainer/devcontainer.json" --override-config /root/.codespaces/shared/merged_devcontainer.json --default-user-env-probe loginInteractiveShell --container-session-data-folder /workspaces/.codespaces/.persistedshare/devcontainers-cli/cache --secrets-file /root/.codespaces/shared/user-secrets-envs.json 2023-09-06 17:08:02.331Z: @devcontainers/cli 0.48.0. Node.js v18.17.1. linux 5.15.0-1041-azure x64. 2023-09-06 17:08:02.851Z: $alpine -c echo Container started 2023-09-06 17:08:02.867Z: Unable to find image 'mcr.microsoft.com/devcontainers/base:alpine' locally 2023-09-06 17:08:02.982Z: alpine: Pulling from devcontainers/base 2023-09-06 17:08:03.030Z: 2023-09-06 17:08:03.031Z:  31e352740f53: Pulling fs layer 2023-09-06 17:08:03.032Z: 2023-09-06 17:08:03.033Z: 2023-09-06 17:08:03.034Z: 4f4fb700ef54: Pulling fs layer   f5189910992f: Pulling fs layer  2023-09-06 17:08:03.037Z:  becb74706921: Pulling fs layer  2023-09-06 17:08:03.038Z:  e211b110fa75: Pulling fs layer   dd93e35b8023: 2023-09-06 17:08:03.039Z: Pulling fs layer   d0231885a4a0: Pulling fs layer   7bde5aa3805d: Pulling fs layer 2023-09-06 17:08:03.040Z: becb74706921: Waiting  e211b110fa75: Waiting 2023-09-06 17:08:03.041Z:  dd93e35b8023: Waiting  d0231885a4a0: Waiting  7bde5aa3805d: 2023-09-06 17:08:03.048Z: Waiting 2023-09-06 17:08:03.149Z: 2023-09-06 17:08:03.151Z: 2023-09-06 17:08:03.152Z: 2023-09-06 17:08:03.152Z: f5189910992f: 2023-09-06 17:08:03.153Z: Downloading 409B/409B 2023-09-06 17:08:03.154Z:  f5189910992f: 2023-09-06 17:08:03.155Z: Verifying Checksum  4f4fb700ef54: Download complete  f5189910992f: Download complete 2023-09-06 17:08:03.163Z:  31e352740f53: 2023-09-06 17:08:03.164Z: Downloading 48.17kB/3.398MB 2023-09-06 17:08:03.261Z: 2023-09-06 17:08:03.263Z: 31e352740f53: Verifying Checksum 2023-09-06 17:08:03.266Z: 2023-09-06 17:08:03.271Z: 31e352740f53: Download complete 2023-09-06 17:08:03.278Z: 2023-09-06 17:08:03.280Z: 2023-09-06 17:08:03.287Z: 2023-09-06 17:08:03.289Z: e211b110fa75: 2023-09-06 17:08:03.291Z: Downloading 223B/223B 2023-09-06 17:08:03.293Z: 2023-09-06 17:08:03.300Z: 2023-09-06 17:08:03.303Z: 2023-09-06 17:08:03.306Z: 2023-09-06 17:08:03.308Z: e211b110fa75: 2023-09-06 17:08:03.311Z: Verifying Checksum 2023-09-06 17:08:03.314Z: 2023-09-06 17:08:03.317Z: 2023-09-06 17:08:03.321Z: 2023-09-06 17:08:03.325Z: 2023-09-06 17:08:03.326Z: e211b110fa75: 2023-09-06 17:08:03.327Z: Download complete 2023-09-06 17:08:03.329Z: 2023-09-06 17:08:03.333Z: 2023-09-06 17:08:03.335Z: 2023-09-06 17:08:03.337Z: 2023-09-06 17:08:03.339Z: 31e352740f53: 2023-09-06 17:08:03.340Z: Extracting 65.54kB/3.398MB 2023-09-06 17:08:03.344Z: 2023-09-06 17:08:03.346Z: 2023-09-06 17:08:03.347Z: 2023-09-06 17:08:03.348Z: 2023-09-06 17:08:03.348Z: becb74706921: 2023-09-06 17:08:03.349Z: Downloading 134B/134B 2023-09-06 17:08:03.350Z: 2023-09-06 17:08:03.352Z: 2023-09-06 17:08:03.354Z: 2023-09-06 17:08:03.354Z: 2023-09-06 17:08:03.360Z: becb74706921: 2023-09-06 17:08:03.361Z: Verifying Checksum 2023-09-06 17:08:03.364Z: 2023-09-06 17:08:03.366Z: 2023-09-06 17:08:03.368Z: 2023-09-06 17:08:03.369Z: 2023-09-06 17:08:03.372Z: becb74706921: 2023-09-06 17:08:03.377Z: Download complete 2023-09-06 17:08:03.380Z: 2023-09-06 17:08:03.382Z: 2023-09-06 17:08:03.384Z: 2023-09-06 17:08:03.386Z: 2023-09-06 17:08:03.387Z: dd93e35b8023: 2023-09-06 17:08:03.388Z: Downloading 235B/235B 2023-09-06 17:08:03.391Z: 2023-09-06 17:08:03.397Z: 2023-09-06 17:08:03.398Z: 2023-09-06 17:08:03.401Z: 2023-09-06 17:08:03.402Z: dd93e35b8023: 2023-09-06 17:08:03.404Z: Verifying Checksum 2023-09-06 17:08:03.408Z:  dd93e35b8023: Download complete  31e352740f53: Extracting 393.2kB/3.398MB 2023-09-06 17:08:03.463Z: 2023-09-06 17:08:03.464Z: 2023-09-06 17:08:03.466Z: 2023-09-06 17:08:03.467Z: d0231885a4a0: 2023-09-06 17:08:03.472Z: Downloading 538.3kB/219.6MB 2023-09-06 17:08:03.475Z: 2023-09-06 17:08:03.491Z: 2023-09-06 17:08:03.492Z: 2023-09-06 17:08:03.493Z: 2023-09-06 17:08:03.495Z: 31e352740f53: 2023-09-06 17:08:03.499Z: Extracting 3.277MB/3.398MB 2023-09-06 17:08:03.502Z: 2023-09-06 17:08:03.504Z: 2023-09-06 17:08:03.505Z: 2023-09-06 17:08:03.510Z: 2023-09-06 17:08:03.516Z: 31e352740f53: 2023-09-06 17:08:03.517Z: Extracting 3.398MB/3.398MB 2023-09-06 17:08:03.519Z: 2023-09-06 17:08:03.523Z: 2023-09-06 17:08:03.525Z: 2023-09-06 17:08:03.528Z: 2023-09-06 17:08:03.536Z: 7bde5aa3805d: 2023-09-06 17:08:03.538Z: Downloading 390.9kB/38.13MB 2023-09-06 17:08:03.541Z: 2023-09-06 17:08:03.548Z: 2023-09-06 17:08:03.551Z: 2023-09-06 17:08:03.553Z: 2023-09-06 17:08:03.557Z: 31e352740f53: 2023-09-06 17:08:03.560Z: Extracting 3.398MB/3.398MB 2023-09-06 17:08:03.565Z: 2023-09-06 17:08:03.577Z: 2023-09-06 17:08:03.578Z: 2023-09-06 17:08:03.579Z: 2023-09-06 17:08:03.582Z: d0231885a4a0: 2023-09-06 17:08:03.586Z: Downloading 7.026MB/219.6MB 2023-09-06 17:08:03.587Z: 2023-09-06 17:08:03.606Z: 2023-09-06 17:08:03.611Z: 2023-09-06 17:08:03.616Z: 2023-09-06 17:08:03.621Z: 7bde5aa3805d: 2023-09-06 17:08:03.623Z: Downloading 6.289MB/38.13MB 2023-09-06 17:08:03.626Z: 2023-09-06 17:08:03.682Z: 2023-09-06 17:08:03.684Z: 2023-09-06 17:08:03.691Z: 2023-09-06 17:08:03.694Z: d0231885a4a0: 2023-09-06 17:08:03.700Z: Downloading 16.74MB/219.6MB 2023-09-06 17:08:03.702Z: 2023-09-06 17:08:03.725Z:  7bde5aa3805d: 2023-09-06 17:08:03.727Z: Downloading 13.37MB/38.13MB 2023-09-06 17:08:03.738Z: 2023-09-06 17:08:03.741Z: 2023-09-06 17:08:03.743Z: 31e352740f53: 2023-09-06 17:08:03.747Z: Pull complete 2023-09-06 17:08:03.752Z: 2023-09-06 17:08:03.790Z: 2023-09-06 17:08:03.804Z: 2023-09-06 17:08:03.809Z: 2023-09-06 17:08:03.811Z: d0231885a4a0: 2023-09-06 17:08:03.814Z: Downloading 27.56MB/219.6MB 2023-09-06 17:08:03.823Z: 2023-09-06 17:08:03.825Z: 2023-09-06 17:08:03.827Z:  4f4fb700ef54: Extracting 32B/32B  4f4fb700ef54: Extracting 32B/32B 2023-09-06 17:08:03.834Z:  7bde5aa3805d: Downloading 26.35MB/38.13MB 2023-09-06 17:08:03.889Z: 2023-09-06 17:08:03.894Z: 2023-09-06 17:08:03.899Z: 2023-09-06 17:08:03.902Z: d0231885a4a0: 2023-09-06 17:08:03.909Z: Downloading 34.05MB/219.6MB 2023-09-06 17:08:03.911Z: 2023-09-06 17:08:04.000Z: 2023-09-06 17:08:04.032Z: 2023-09-06 17:08:04.057Z: 2023-09-06 17:08:04.076Z: 7bde5aa3805d: 2023-09-06 17:08:04.083Z: Downloading 35.39MB/38.13MB 2023-09-06 17:08:04.088Z: 2023-09-06 17:08:04.090Z:  7bde5aa3805d: Downloading 38.13MB/38.13MB  7bde5aa3805d: Verifying Checksum  7bde5aa3805d: Download complete  d0231885a4a0: Downloading 40.53MB/219.6MB 2023-09-06 17:08:04.098Z: 2023-09-06 17:08:04.107Z: 2023-09-06 17:08:04.111Z: 2023-09-06 17:08:04.116Z: d0231885a4a0: 2023-09-06 17:08:04.120Z: Downloading 48.1MB/219.6MB 2023-09-06 17:08:04.125Z: 2023-09-06 17:08:04.205Z:  d0231885a4a0: Downloading 65.4MB/219.6MB 2023-09-06 17:08:04.302Z:  2023-09-06 17:08:04.304Z: d0231885a4a0: Downloading 83.79MB/219.6MB 2023-09-06 17:08:04.408Z:  d0231885a4a0: Downloading 96.76MB/219.6MB 2023-09-06 17:08:04.522Z: 2023-09-06 17:08:04.526Z:  d0231885a4a0: Downloading 106.5MB/219.6MB 2023-09-06 17:08:04.611Z:  d0231885a4a0: Downloading 117.3MB/219.6MB 2023-09-06 17:08:04.713Z:  d0231885a4a0: Downloading 136.8MB/219.6MB 2023-09-06 17:08:04.813Z:  d0231885a4a0: Downloading 155.7MB/219.6MB 2023-09-06 17:08:04.914Z:  d0231885a4a0: Downloading 178.9MB/219.6MB 2023-09-06 17:08:04.962Z:  4f4fb700ef54: Pull complete 2023-09-06 17:08:05.013Z:  f5189910992f: Extracting 409B/409B 2023-09-06 17:08:05.015Z:  f5189910992f: Extracting 409B/409B 2023-09-06 17:08:05.023Z:  d0231885a4a0: 2023-09-06 17:08:05.028Z: Downloading 200.6MB/219.6MB 2023-09-06 17:08:05.136Z:  d0231885a4a0: 2023-09-06 17:08:05.156Z: Downloading 206MB/219.6MB 2023-09-06 17:08:05.233Z: 2023-09-06 17:08:05.247Z: 2023-09-06 17:08:05.259Z: 2023-09-06 17:08:05.265Z: d0231885a4a0: 2023-09-06 17:08:05.276Z: Downloading 214.6MB/219.6MB 2023-09-06 17:08:05.289Z: 2023-09-06 17:08:05.297Z:  d0231885a4a0: Verifying Checksum 2023-09-06 17:08:05.298Z:  d0231885a4a0: Download complete 2023-09-06 17:08:05.758Z:  f5189910992f: Pull complete 2023-09-06 17:08:05.803Z: 2023-09-06 17:08:05.805Z: 2023-09-06 17:08:05.808Z: 2023-09-06 17:08:05.811Z: becb74706921: 2023-09-06 17:08:05.814Z: Extracting 134B/134B 2023-09-06 17:08:05.817Z: 2023-09-06 17:08:05.820Z: 2023-09-06 17:08:05.823Z: 2023-09-06 17:08:05.826Z: 2023-09-06 17:08:05.830Z: becb74706921: 2023-09-06 17:08:05.832Z: Extracting 134B/134B 2023-09-06 17:08:05.835Z: 2023-09-06 17:08:06.011Z: 2023-09-06 17:08:06.012Z:  becb74706921: 2023-09-06 17:08:06.012Z: Pull complete 2023-09-06 17:08:06.052Z:  e211b110fa75: Extracting 223B/223B  e211b110fa75: Extracting 223B/223B 2023-09-06 17:08:06.233Z: 2023-09-06 17:08:06.235Z:  e211b110fa75: Pull complete 2023-09-06 17:08:06.276Z: 2023-09-06 17:08:06.278Z: 2023-09-06 17:08:06.279Z: 2023-09-06 17:08:06.286Z: dd93e35b8023: 2023-09-06 17:08:06.288Z: Extracting 235B/235B 2023-09-06 17:08:06.290Z: 2023-09-06 17:08:06.292Z: 2023-09-06 17:08:06.294Z: 2023-09-06 17:08:06.295Z: 2023-09-06 17:08:06.297Z: dd93e35b8023: 2023-09-06 17:08:06.299Z: Extracting 235B/235B 2023-09-06 17:08:06.300Z: 2023-09-06 17:08:06.462Z:  dd93e35b8023: Pull complete 2023-09-06 17:08:06.542Z:  d0231885a4a0: Extracting 557.1kB/219.6MB 2023-09-06 17:08:06.644Z:  d0231885a4a0: 2023-09-06 17:08:06.646Z: Extracting 4.456MB/219.6MB 2023-09-06 17:08:06.753Z:  d0231885a4a0: Extracting 10.03MB/219.6MB 2023-09-06 17:08:06.855Z:  d0231885a4a0: 2023-09-06 17:08:06.857Z: Extracting 15.6MB/219.6MB 2023-09-06 17:08:06.956Z:  d0231885a4a0: 2023-09-06 17:08:06.958Z: Extracting 20.05MB/219.6MB 2023-09-06 17:08:07.122Z:  d0231885a4a0: 2023-09-06 17:08:07.123Z: Extracting 22.28MB/219.6MB 2023-09-06 17:08:07.299Z:  d0231885a4a0: 2023-09-06 17:08:07.301Z: Extracting 23.95MB/219.6MB 2023-09-06 17:08:07.414Z: 2023-09-06 17:08:07.416Z:  2023-09-06 17:08:07.419Z: d0231885a4a0: Extracting 27.3MB/219.6MB 2023-09-06 17:08:07.523Z: 2023-09-06 17:08:07.524Z: 2023-09-06 17:08:07.526Z: 2023-09-06 17:08:07.529Z: d0231885a4a0: 2023-09-06 17:08:07.533Z: Extracting 30.64MB/219.6MB 2023-09-06 17:08:07.537Z: 2023-09-06 17:08:07.633Z: 2023-09-06 17:08:07.634Z: 2023-09-06 17:08:07.636Z: 2023-09-06 17:08:07.637Z: d0231885a4a0: 2023-09-06 17:08:07.638Z: Extracting 35.65MB/219.6MB 2023-09-06 17:08:07.639Z: 2023-09-06 17:08:07.738Z: 2023-09-06 17:08:07.739Z: 2023-09-06 17:08:07.739Z: 2023-09-06 17:08:07.740Z: d0231885a4a0: 2023-09-06 17:08:07.743Z: Extracting 40.67MB/219.6MB 2023-09-06 17:08:07.746Z: 2023-09-06 17:08:07.838Z: 2023-09-06 17:08:07.839Z: 2023-09-06 17:08:07.840Z: 2023-09-06 17:08:07.842Z: d0231885a4a0: 2023-09-06 17:08:07.844Z: Extracting 45.12MB/219.6MB 2023-09-06 17:08:07.845Z: 2023-09-06 17:08:07.946Z: 2023-09-06 17:08:07.949Z: 2023-09-06 17:08:07.950Z: 2023-09-06 17:08:07.953Z: d0231885a4a0: 2023-09-06 17:08:07.958Z: Extracting 50.14MB/219.6MB 2023-09-06 17:08:07.962Z: 2023-09-06 17:08:08.046Z: 2023-09-06 17:08:08.050Z: 2023-09-06 17:08:08.053Z: 2023-09-06 17:08:08.057Z: d0231885a4a0: 2023-09-06 17:08:08.058Z: Extracting 54.03MB/219.6MB 2023-09-06 17:08:08.060Z: 2023-09-06 17:08:08.159Z: 2023-09-06 17:08:08.160Z: 2023-09-06 17:08:08.161Z: 2023-09-06 17:08:08.161Z: d0231885a4a0: 2023-09-06 17:08:08.162Z: Extracting 57.93MB/219.6MB 2023-09-06 17:08:08.163Z: 2023-09-06 17:08:08.263Z: 2023-09-06 17:08:08.269Z: 2023-09-06 17:08:08.276Z: 2023-09-06 17:08:08.282Z: d0231885a4a0: 2023-09-06 17:08:08.288Z: Extracting 60.72MB/219.6MB 2023-09-06 17:08:08.295Z: 2023-09-06 17:08:08.366Z: 2023-09-06 17:08:08.368Z: 2023-09-06 17:08:08.369Z: d0231885a4a0: Extracting 63.5MB/219.6MB 2023-09-06 17:08:08.466Z: 2023-09-06 17:08:08.470Z:  d0231885a4a0: Extracting 66.29MB/219.6MB 2023-09-06 17:08:08.570Z:  d0231885a4a0: Extracting 72.97MB/219.6MB 2023-09-06 17:08:08.672Z:  d0231885a4a0: Extracting 82.44MB/219.6MB 2023-09-06 17:08:08.777Z:  d0231885a4a0: Extracting 90.8MB/219.6MB 2023-09-06 17:08:08.878Z:  d0231885a4a0: Extracting 99.16MB/219.6MB 2023-09-06 17:08:09.002Z:  d0231885a4a0: Extracting 105.8MB/219.6MB 2023-09-06 17:08:09.112Z:  d0231885a4a0: Extracting 110.3MB/219.6MB 2023-09-06 17:08:09.226Z:  d0231885a4a0: Extracting 113.6MB/219.6MB 2023-09-06 17:08:09.356Z:  d0231885a4a0: Extracting 115.9MB/219.6MB 2023-09-06 17:08:09.465Z:  d0231885a4a0: Extracting 122.6MB/219.6MB 2023-09-06 17:08:09.578Z:  d0231885a4a0: Extracting 127.6MB/219.6MB 2023-09-06 17:08:09.684Z:  d0231885a4a0: Extracting 133.7MB/219.6MB 2023-09-06 17:08:09.787Z:  d0231885a4a0: Extracting 138.7MB/219.6MB 2023-09-06 17:08:09.891Z:  d0231885a4a0: Extracting 143.2MB/219.6MB 2023-09-06 17:08:09.998Z:  d0231885a4a0: Extracting 149.8MB/219.6MB 2023-09-06 17:08:10.105Z:  d0231885a4a0: 2023-09-06 17:08:10.109Z: Extracting 154.9MB/219.6MB 2023-09-06 17:08:10.209Z:  d0231885a4a0: 2023-09-06 17:08:10.215Z: Extracting 159.9MB/219.6MB 2023-09-06 17:08:10.309Z:  d0231885a4a0: 2023-09-06 17:08:10.311Z: Extracting 164.9MB/219.6MB 2023-09-06 17:08:10.413Z:  d0231885a4a0: 2023-09-06 17:08:10.414Z: Extracting 171MB/219.6MB 2023-09-06 17:08:10.514Z:  d0231885a4a0: Extracting 176MB/219.6MB 2023-09-06 17:08:10.622Z:  d0231885a4a0: Extracting 182.2MB/219.6MB 2023-09-06 17:08:10.722Z:  d0231885a4a0: 2023-09-06 17:08:10.724Z: Extracting 187.2MB/219.6MB 2023-09-06 17:08:10.828Z:  d0231885a4a0: 2023-09-06 17:08:10.830Z: Extracting 192.7MB/219.6MB 2023-09-06 17:08:10.937Z: 2023-09-06 17:08:10.939Z: d0231885a4a0: Extracting 198.9MB/219.6MB 2023-09-06 17:08:11.043Z:  d0231885a4a0: 2023-09-06 17:08:11.045Z: Extracting 204.4MB/219.6MB 2023-09-06 17:08:11.151Z:  d0231885a4a0: Extracting 209.5MB/219.6MB 2023-09-06 17:08:11.296Z:  d0231885a4a0: Extracting 211.7MB/219.6MB 2023-09-06 17:08:11.399Z:  d0231885a4a0: Extracting 213.4MB/219.6MB 2023-09-06 17:08:11.546Z:  d0231885a4a0: Extracting 214.5MB/219.6MB 2023-09-06 17:08:11.694Z:  d0231885a4a0: Extracting 215.6MB/219.6MB 2023-09-06 17:08:11.803Z:  d0231885a4a0: Extracting 216.1MB/219.6MB 2023-09-06 17:08:11.909Z:  d0231885a4a0: Extracting 216.7MB/219.6MB 2023-09-06 17:08:12.078Z:  d0231885a4a0: Extracting 217.3MB/219.6MB 2023-09-06 17:08:12.208Z:  d0231885a4a0: 2023-09-06 17:08:12.210Z: Extracting 217.8MB/219.6MB 2023-09-06 17:08:12.280Z: 2023-09-06 17:08:12.295Z: 2023-09-06 17:08:12.296Z: 2023-09-06 17:08:12.298Z: d0231885a4a0: 2023-09-06 17:08:12.301Z: Extracting 219.6MB/219.6MB 2023-09-06 17:08:12.303Z: 2023-09-06 17:08:15.321Z:  d0231885a4a0: Pull complete 2023-09-06 17:08:15.403Z:  7bde5aa3805d: 2023-09-06 17:08:15.404Z: Extracting 393.2kB/38.13MB 2023-09-06 17:08:15.518Z:  7bde5aa3805d: Extracting 3.539MB/38.13MB 2023-09-06 17:08:15.620Z:  7bde5aa3805d: Extracting 5.112MB/38.13MB 2023-09-06 17:08:15.747Z:  7bde5aa3805d: 2023-09-06 17:08:15.748Z: Extracting 9.83MB/38.13MB 2023-09-06 17:08:15.848Z:  7bde5aa3805d: 2023-09-06 17:08:15.849Z: Extracting 11.4MB/38.13MB 2023-09-06 17:08:15.955Z:  7bde5aa3805d: 2023-09-06 17:08:15.957Z: Extracting 16.52MB/38.13MB 2023-09-06 17:08:16.060Z:  7bde5aa3805d: 2023-09-06 17:08:16.063Z: Extracting 22.02MB/38.13MB 2023-09-06 17:08:16.180Z:  7bde5aa3805d: Extracting 25.56MB/38.13MB 2023-09-06 17:08:16.306Z:  7bde5aa3805d: Extracting 26.74MB/38.13MB 2023-09-06 17:08:16.307Z: 2023-09-06 17:08:16.423Z:  7bde5aa3805d: Extracting 28.31MB/38.13MB 2023-09-06 17:08:16.525Z:  7bde5aa3805d: 2023-09-06 17:08:16.526Z: Extracting 31.06MB/38.13MB 2023-09-06 17:08:16.626Z: 2023-09-06 17:08:16.627Z:  7bde5aa3805d: Extracting 32.64MB/38.13MB 2023-09-06 17:08:16.734Z:  7bde5aa3805d: Extracting 35MB/38.13MB 2023-09-06 17:08:16.848Z:  7bde5aa3805d: 2023-09-06 17:08:16.850Z: Extracting 36.18MB/38.13MB 2023-09-06 17:08:16.901Z:  7bde5aa3805d: Extracting 38.13MB/38.13MB 2023-09-06 17:08:16.905Z: 2023-09-06 17:08:16.905Z:  7bde5aa3805d: Extracting 38.13MB/38.13MB 2023-09-06 17:08:17.819Z:  7bde5aa3805d: Pull complete 2023-09-06 17:08:17.879Z: Digest: sha256:7c4b8a628b3eac212f1960e647fc113e1608d6a09d865a63d4ab9d0cc0b2a2b4 2023-09-06 17:08:17.921Z: Status: Downloaded newer image for mcr.microsoft.com/devcontainers/base:alpine 2023-09-06 17:08:18.241Z: Container started2023-09-06 17:08:18.242Z: 2023-09-06 17:08:18.497Z: Outcome: success User: vscode WorkspaceFolder: /workspaces/polars 2023-09-06 17:08:18.504Z: devcontainer process exited with exit code 0 ================================================================================= 2023-09-06 17:08:19.176Z: Running blocking commands... 2023-09-06 17:08:19.179Z: $ devcontainer up --id-label Type=codespaces --workspace-folder /var/lib/docker/codespacemount/workspace/polars --mount type=bind,source=/.codespaces/agent/mount/cache,target=/vscode --user-data-folder /var/lib/docker/codespacemount/.persistedshare --container-data-folder .vscode-remote/data/Machine --container-system-data-folder /var/vscode-remote --log-level trace --log-format json --update-remote-user-uid-default never --mount-workspace-git-root false --omit-config-remote-env-from-metadata --skip-non-blocking-commands --expect-existing-container --config "/var/lib/docker/codespacemount/workspace/polars/.devcontainer/devcontainer.json" --override-config /root/.codespaces/shared/merged_devcontainer.json --default-user-env-probe loginInteractiveShell --container-session-data-folder /workspaces/.codespaces/.persistedshare/devcontainers-cli/cache --secrets-file /root/.codespaces/shared/user-secrets-envs.json 2023-09-06 17:08:19.427Z: @devcontainers/cli 0.48.0. Node.js v18.17.1. linux 5.15.0-1041-azure x64. 2023-09-06 17:08:19.648Z: Outcome: success User: vscode WorkspaceFolder: /workspaces/polars 2023-09-06 17:08:19.659Z: devcontainer process exited with exit code 0 ================================================================================= 2023-09-06 17:08:19.665Z: Configuring codespace... ================================================================================= 2023-09-06 17:08:19.706Z: Finished configuring codespace. ```