We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following error happened to me while building docker for playground.
Docker version: 4.36.0 OS: Windows 11 with WSL 2, Ubuntu 20.04
Here is the log after running "make docker" command. I did run "make docker-clean" in prior
docker volume create docetl-data && \ DOCKER_BUILDKIT=1 docker build --progress=plain -t docetl . && \ docker run --rm -it \ -p 3000:3000 \ -p 8000:8000 \ -v docetl-data:/docetl-data \ -e FRONTEND_HOST=0.0.0.0 \ -e FRONTEND_PORT=3000 \ -e BACKEND_HOST=0.0.0.0 \ -e BACKEND_PORT=8000 \ docetl docetl-data #0 building with "default" instance using docker driver #1 [internal] load build definition from Dockerfile #1 transferring dockerfile: 2.09kB 0.0s done #1 DONE 0.1s #2 [internal] load metadata for docker.io/library/node:20-alpine #2 ... #3 [internal] load metadata for docker.io/library/python:3.11-slim #3 DONE 1.1s #2 [internal] load metadata for docker.io/library/node:20-alpine #2 DONE 1.2s #4 [internal] load .dockerignore #4 transferring context: 2B 0.0s done #4 DONE 0.1s #5 [internal] load build context #5 DONE 0.0s #6 [node-builder 1/6] FROM docker.io/library/node:20-alpine@sha256:b5b9467fe7b33aad47f1ec3f6e0646a658f85f05c18d4243024212a91f3b7554 #6 resolve docker.io/library/node:20-alpine@sha256:b5b9467fe7b33aad47f1ec3f6e0646a658f85f05c18d4243024212a91f3b7554 0.1s done #6 DONE 0.1s #7 [python-builder 1/9] FROM docker.io/library/python:3.11-slim@sha256:840e180ebcc6e5c8efab209c43f5e40fd2af98cb49db5c7103c90539c56bb30e #7 resolve docker.io/library/python:3.11-slim@sha256:840e180ebcc6e5c8efab209c43f5e40fd2af98cb49db5c7103c90539c56bb30e #7 resolve docker.io/library/python:3.11-slim@sha256:840e180ebcc6e5c8efab209c43f5e40fd2af98cb49db5c7103c90539c56bb30e 0.1s done #7 DONE 0.1s #8 [runtime 2/11] RUN apt-get update && apt-get install -y curl && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs && rm -rf /var/lib/apt/lists/* #8 CACHED #9 [runtime 3/11] WORKDIR /app #9 CACHED #5 [internal] load build context #5 transferring context: 12.43kB 0.8s done #5 DONE 0.9s #10 [node-builder 2/6] WORKDIR /app/website #10 CACHED #11 [node-builder 3/6] COPY website/package*.json ./ #11 CACHED #12 [node-builder 4/6] RUN npm install #12 CACHED #13 [node-builder 5/6] COPY website/ ./ #13 CACHED #14 [node-builder 6/6] RUN npm run build #14 CACHED #15 [python-builder 4/9] COPY pyproject.toml poetry.lock ./ #15 CACHED #16 [python-builder 5/9] COPY docetl/ ./docetl/ #16 CACHED #17 [python-builder 6/9] COPY server/ ./server/ #17 CACHED #18 [python-builder 7/9] COPY tests/ ./tests/ #18 CACHED #19 [python-builder 2/9] RUN pip install poetry==1.4.2 #19 CACHED #20 [python-builder 3/9] WORKDIR /app #20 CACHED #21 [python-builder 8/9] RUN touch README.md #21 CACHED #22 [python-builder 9/9] RUN --mount=type=cache,target=/tmp/poetry_cache poetry install --all-extras --no-root && poetry install --all-extras #22 0.590 Creating virtualenv docetl in /app/.venv #22 0.865 Installing dependencies from lock file #22 1.489 #22 1.489 Package operations: 178 installs, 0 updates, 0 removals #22 1.489 #22 1.490 • Installing attrs (24.2.0) #22 1.490 • Installing nvidia-nvjitlink-cu12 (12.4.127) #22 1.490 • Installing rpds-py (0.20.0) #22 1.491 • Installing six (1.16.0) #22 2.072 • Installing filelock (3.16.1) #22 2.073 • Installing nvidia-cublas-cu12 (12.4.5.8) #22 2.073 • Installing mergedeep (1.3.4) #22 2.075 • Installing mpmath (1.3.0) #22 2.078 • Installing platformdirs (4.3.6) #22 2.079 • Installing nvidia-cusparse-cu12 (12.3.1.170) #22 2.082 • Installing pyyaml (6.0.2) #22 2.086 • Installing typing-extensions (4.12.2) #22 2.087 • Installing python-dateutil (2.9.0.post0) #22 2.090 • Installing markupsafe (3.0.2) #22 2.097 • Installing referencing (0.35.1) #22 8.329 • Installing annotated-types (0.7.0) #22 8.329 • Installing certifi (2024.8.30) #22 8.333 • Installing click (8.1.7) #22 8.333 • Installing charset-normalizer (3.4.0) #22 8.336 • Installing ghp-import (2.1.0) #22 8.339 • Installing fsspec (2024.10.0) #22 8.339 • Installing jinja2 (3.1.4) #22 8.341 • Installing h11 (0.14.0) #22 8.346 • Installing markdown (3.7) #22 8.358 • Installing jsonschema-specifications (2024.10.1) #22 8.361 • Installing networkx (3.4.2) #22 8.364 • Installing nvidia-cuda-cupti-cu12 (12.4.127) #22 8.366 • Installing nvidia-cuda-nvrtc-cu12 (12.4.127) #22 8.369 • Installing mdurl (0.1.2) #22 8.371 • Installing nvidia-cudnn-cu12 (9.1.0.70) #22 8.373 • Installing nvidia-cufft-cu12 (11.2.1.3) #22 8.375 • Installing nvidia-cuda-runtime-cu12 (12.4.127) #22 8.376 • Installing numpy (1.26.4) #22 8.378 • Installing mkdocs-get-deps (0.2.0) #22 8.380 • Installing idna (3.10) #22 8.396 • Installing nvidia-curand-cu12 (10.3.5.147) #22 8.466 • Installing nvidia-cusolver-cu12 (11.6.1.9) #22 8.559 • Installing nvidia-nccl-cu12 (2.21.5) #22 8.566 • Installing nvidia-nvtx-cu12 (12.4.127) #22 8.572 • Installing packaging (24.1) #22 8.588 • Installing pathspec (0.12.1) #22 8.627 • Installing pillow (10.4.0) #22 8.663 • Installing pydantic-core (2.23.4) #22 8.705 • Installing pytz (2024.2) #22 8.744 • Installing pyyaml-env-tag (0.1) #22 8.780 • Installing sniffio (1.3.1) #22 8.820 • Installing sympy (1.13.1) #22 8.863 • Installing triton (3.1.0) #22 8.876 • Installing tzdata (2024.2) #22 8.883 • Installing urllib3 (2.2.3) #22 8.985 • Installing watchdog (5.0.3) #22 30.69 • Installing anyio (4.6.2.post1) #22 30.69 • Installing frozenlist (1.5.0) #22 30.69 • Installing httpcore (1.0.6) #22 30.69 • Installing imageio (2.36.0) #22 30.69 • Installing jsonref (1.1.0) #22 30.69 • Installing jsonschema (4.23.0) #22 30.70 • Installing lazy-loader (0.4) #22 30.70 • Installing markdown-it-py (3.0.0) #22 30.70 • Installing mkdocs (1.6.1) #22 30.70 • Installing multidict (6.1.0) #22 30.71 • Installing oauthlib (3.2.2) #22 30.71 • Installing pandas (2.2.3) #22 30.72 • Installing propcache (0.2.0) #22 30.72 • Installing pygments (2.18.0) #22 30.72 • Installing pydantic (2.9.2) #22 30.73 • Installing scipy (1.14.1) #22 30.73 • Installing requests (2.32.3) #22 30.73 • Installing tabulate (0.9.0) #22 30.74 • Installing tifffile (2024.9.20) #22 30.74 • Installing torch (2.5.1) #22 31.03 #22 31.03 RuntimeError #22 31.03 #22 31.03 Hash for anyio (4.6.2.post1) from archive anyio-4.6.2.post1-py3-none-any.whl not found in known hashes (was: sha256:d024ae882e437d4afe1d6bdb7c17d6523e3f99fe3eb836bb07918168f423fcde) #22 31.03 #22 31.03 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.06 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.06 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.06 767│ #22 31.06 768│ if archive_hash not in known_hashes: #22 31.06 → 769│ raise RuntimeError( #22 31.06 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.06 771│ f" known hashes (was: {archive_hash})" #22 31.06 772│ ) #22 31.06 773│ #22 31.06 #22 31.06 • Installing tqdm (4.66.5) #22 31.06 #22 31.06 RuntimeError #22 31.06 #22 31.06 Hash for lazy-loader (0.4) from archive lazy_loader-0.4-py3-none-any.whl not found in known hashes (was: sha256:ba8c4b1b49f47c1e7849f5155e2f6bf03120e3a9fb8b7c7173a1184c2089b0c6) #22 31.06 #22 31.06 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.08 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.08 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.08 767│ #22 31.08 768│ if archive_hash not in known_hashes: #22 31.08 → 769│ raise RuntimeError( #22 31.08 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.08 771│ f" known hashes (was: {archive_hash})" #22 31.08 772│ ) #22 31.08 773│ #22 31.08 #22 31.09 #22 31.09 RuntimeError #22 31.09 #22 31.09 Hash for httpcore (1.0.6) from archive httpcore-1.0.6-py3-none-any.whl not found in known hashes (was: sha256:65d44db37b8cdea44dd509ca6aa41958c0d6b74124e4017457ca4f8611067e3f) #22 31.09 #22 31.09 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.11 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.11 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.11 767│ #22 31.11 768│ if archive_hash not in known_hashes: #22 31.11 → 769│ raise RuntimeError( #22 31.11 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.11 771│ f" known hashes (was: {archive_hash})" #22 31.11 772│ ) #22 31.11 773│ #22 31.11 #22 31.11 #22 31.11 RuntimeError #22 31.11 #22 31.11 Hash for markdown-it-py (3.0.0) from archive markdown_it_py-3.0.0-py3-none-any.whl not found in known hashes (was: sha256:b57d584b16ba285aa18e6ca781e01a238dbabb0332df2c6aee3cc27e51bf2477) #22 31.11 #22 31.11 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.13 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.13 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.13 767│ #22 31.13 768│ if archive_hash not in known_hashes: #22 31.13 → 769│ raise RuntimeError( #22 31.13 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.13 771│ f" known hashes (was: {archive_hash})" #22 31.13 772│ ) #22 31.13 773│ #22 31.13 #22 31.13 #22 31.13 RuntimeError #22 31.13 #22 31.13 Hash for requests (2.32.3) from archive requests-2.32.3-py3-none-any.whl not found in known hashes (was: sha256:c2dd35460b362a45810f61ebe46c10f4b013a83cd464b94cc15d85c3fbba3112) #22 31.13 #22 31.13 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.15 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.15 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.15 767│ #22 31.15 768│ if archive_hash not in known_hashes: #22 31.15 → 769│ raise RuntimeError( #22 31.15 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.15 771│ f" known hashes (was: {archive_hash})" #22 31.15 772│ ) #22 31.15 773│ #22 31.15 #22 31.16 #22 31.16 RuntimeError #22 31.16 #22 31.16 Hash for tabulate (0.9.0) from archive tabulate-0.9.0-py3-none-any.whl not found in known hashes (was: sha256:6ae1c98731937c920366fde8f1eca7d22b8454740ec9f4a8bf27a896a02a9ef3) #22 31.16 #22 31.16 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.18 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.18 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.18 767│ #22 31.18 768│ if archive_hash not in known_hashes: #22 31.18 → 769│ raise RuntimeError( #22 31.18 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.18 771│ f" known hashes (was: {archive_hash})" #22 31.18 772│ ) #22 31.18 773│ #22 31.18 #22 31.18 #22 31.18 RuntimeError #22 31.18 #22 31.18 Hash for frozenlist (1.5.0) from archive frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl not found in known hashes (was: sha256:780e9ebd008ffb664de11b26f99e8c17895ef4961705cbd8978f6ac4eb066b64) #22 31.18 #22 31.18 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.20 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.20 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.20 767│ #22 31.20 768│ if archive_hash not in known_hashes: #22 31.20 → 769│ raise RuntimeError( #22 31.20 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.20 771│ f" known hashes (was: {archive_hash})" #22 31.20 772│ ) #22 31.21 773│ #22 31.21 #22 31.21 #22 31.21 RuntimeError #22 31.21 #22 31.21 Hash for tifffile (2024.9.20) from archive tifffile-2024.9.20-py3-none-any.whl not found in known hashes (was: sha256:5e92fb835f0c808675a9c5b18073e9d2dcad97b0c19546d4b9912d26c9b1b62a) #22 31.21 #22 31.21 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.23 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.23 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.23 767│ #22 31.23 768│ if archive_hash not in known_hashes: #22 31.23 → 769│ raise RuntimeError( #22 31.23 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.23 771│ f" known hashes (was: {archive_hash})" #22 31.23 772│ ) #22 31.23 773│ #22 31.23 #22 31.23 #22 31.23 RuntimeError #22 31.23 #22 31.23 Hash for pygments (2.18.0) from archive pygments-2.18.0-py3-none-any.whl not found in known hashes (was: sha256:5d242a6383272d3612ce6f290d51bc2d11f42b694e2fbb2acecdcc20095696ba) #22 31.23 #22 31.23 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.26 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.26 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.26 767│ #22 31.26 768│ if archive_hash not in known_hashes: #22 31.26 → 769│ raise RuntimeError( #22 31.26 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.26 771│ f" known hashes (was: {archive_hash})" #22 31.26 772│ ) #22 31.26 773│ #22 31.26 #22 31.26 #22 31.26 RuntimeError #22 31.26 #22 31.26 Hash for pandas (2.2.3) from archive pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl not found in known hashes (was: sha256:802c2bc6cd820d41f7fd2279e2db66595c21dc27ffe2a61ed450b7eb101c8427) #22 31.26 #22 31.26 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.28 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.28 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.28 767│ #22 31.28 768│ if archive_hash not in known_hashes: #22 31.28 → 769│ raise RuntimeError( #22 31.28 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.28 771│ f" known hashes (was: {archive_hash})" #22 31.28 772│ ) #22 31.28 773│ #22 31.28 #22 31.28 #22 31.28 RuntimeError #22 31.28 #22 31.28 Hash for jsonschema (4.23.0) from archive jsonschema-4.23.0-py3-none-any.whl not found in known hashes (was: sha256:6bae5e5e785fa4c6a3077e64196db542161dcec186024a3e7b50f747b04259f2) #22 31.29 #22 31.29 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.30 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.30 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.31 767│ #22 31.31 768│ if archive_hash not in known_hashes: #22 31.31 → 769│ raise RuntimeError( #22 31.31 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.31 771│ f" known hashes (was: {archive_hash})" #22 31.31 772│ ) #22 31.31 773│ #22 31.31 #22 31.31 #22 31.31 RuntimeError #22 31.31 #22 31.31 Hash for propcache (0.2.0) from archive propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl not found in known hashes (was: sha256:e06c619c6e57f5bc6237603784ceca10aad4a8fd1a79e69d7d571eadb2be4270) #22 31.31 #22 31.31 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.33 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.33 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.33 767│ #22 31.33 768│ if archive_hash not in known_hashes: #22 31.33 → 769│ raise RuntimeError( #22 31.33 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.33 771│ f" known hashes (was: {archive_hash})" #22 31.33 772│ ) #22 31.33 773│ #22 31.33 #22 31.33 #22 31.33 RuntimeError #22 31.33 #22 31.33 Hash for imageio (2.36.0) from archive imageio-2.36.0-py3-none-any.whl not found in known hashes (was: sha256:dbf0bef0676caf08b77cc2662c0619a2de6adf6f290b580e6152416190c5b761) #22 31.33 #22 31.33 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.35 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.35 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.35 767│ #22 31.35 768│ if archive_hash not in known_hashes: #22 31.35 → 769│ raise RuntimeError( #22 31.35 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.35 771│ f" known hashes (was: {archive_hash})" #22 31.35 772│ ) #22 31.35 773│ #22 31.35 #22 31.35 #22 31.35 RuntimeError #22 31.35 #22 31.35 Hash for pydantic (2.9.2) from archive pydantic-2.9.2-py3-none-any.whl not found in known hashes (was: sha256:6e846d1d86be4d2d18b7a6a91f03dd1d3442a6c8a654476ef88d22c229795f45) #22 31.35 #22 31.35 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.37 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.37 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.37 767│ #22 31.37 768│ if archive_hash not in known_hashes: #22 31.37 → 769│ raise RuntimeError( #22 31.37 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.37 771│ f" known hashes (was: {archive_hash})" #22 31.37 772│ ) #22 31.37 773│ #22 31.37 #22 31.37 #22 31.37 RuntimeError #22 31.37 #22 31.38 Hash for jsonref (1.1.0) from archive jsonref-1.1.0-py3-none-any.whl not found in known hashes (was: sha256:e97adad7a9cca9bb59d1e092e4cb920bce394fe3d3952a2511dc758687a29d69) #22 31.38 #22 31.38 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.39 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.39 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.40 767│ #22 31.40 768│ if archive_hash not in known_hashes: #22 31.40 → 769│ raise RuntimeError( #22 31.40 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.40 771│ f" known hashes (was: {archive_hash})" #22 31.40 772│ ) #22 31.40 773│ #22 31.40 #22 31.40 #22 31.40 RuntimeError #22 31.40 #22 31.40 Hash for multidict (6.1.0) from archive multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl not found in known hashes (was: sha256:f02d1e0f01d37b66c61f221912a9632d238b96af4cd847bfb2b104dea1dd824a) #22 31.40 #22 31.40 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.42 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.42 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.42 767│ #22 31.42 768│ if archive_hash not in known_hashes: #22 31.42 → 769│ raise RuntimeError( #22 31.42 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.42 771│ f" known hashes (was: {archive_hash})" #22 31.42 772│ ) #22 31.42 773│ #22 31.42 #22 31.42 #22 31.42 RuntimeError #22 31.42 #22 31.42 Hash for mkdocs (1.6.1) from archive mkdocs-1.6.1-py3-none-any.whl not found in known hashes (was: sha256:e10a3410eab47f9bcae568b60c1bc1379f8c71c74106703ab0206692aeb556a0) #22 31.42 #22 31.42 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.45 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.45 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.45 767│ #22 31.45 768│ if archive_hash not in known_hashes: #22 31.45 → 769│ raise RuntimeError( #22 31.45 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.45 771│ f" known hashes (was: {archive_hash})" #22 31.45 772│ ) #22 31.45 773│ #22 31.45 #22 31.45 #22 31.45 RuntimeError #22 31.45 #22 31.45 Hash for oauthlib (3.2.2) from archive oauthlib-3.2.2-py3-none-any.whl not found in known hashes (was: sha256:329c60a1f73e465640665150b2f75a8e7d8b960854c18798bbb53e88e7ab337f) #22 31.45 #22 31.45 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.47 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.47 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.47 767│ #22 31.47 768│ if archive_hash not in known_hashes: #22 31.47 → 769│ raise RuntimeError( #22 31.47 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.47 771│ f" known hashes (was: {archive_hash})" #22 31.47 772│ ) #22 31.47 773│ #22 31.47 #22 31.47 #22 31.47 RuntimeError #22 31.47 #22 31.47 Hash for tqdm (4.66.5) from archive tqdm-4.66.5-py3-none-any.whl not found in known hashes (was: sha256:40610b0a7700785efd48eb9339b17b64ee155cf02a7a76628049ab71bf98725c) #22 31.47 #22 31.47 at /usr/local/lib/python3.11/site-packages/poetry/installation/executor.py:769 in _validate_archive_hash #22 31.49 765│ archive_hash: str = "sha256:" + get_file_hash(archive) #22 31.49 766│ known_hashes = {f["hash"] for f in package.files if f["file"] == archive.name} #22 31.49 767│ #22 31.49 768│ if archive_hash not in known_hashes: #22 31.49 → 769│ raise RuntimeError( #22 31.49 770│ f"Hash for {package} from archive {archive.name} not found in" #22 31.49 771│ f" known hashes (was: {archive_hash})" #22 31.49 772│ ) #22 31.49 773│ #22 31.49
The text was updated successfully, but these errors were encountered:
Thanks for raising the issue! I think I need to regenerate the poetry lock file; will push a fix shortly
Sorry, something went wrong.
Hope this works! Please let me know if you still can't get it to build...
Hi @shreyashankar
Sorry for the late response. I could fix the error by doing the following. Hope it can help other people:
I think the previous problem is with the cache
shreyashankar
Successfully merging a pull request may close this issue.
The following error happened to me while building docker for playground.
Docker version: 4.36.0
OS: Windows 11 with WSL 2, Ubuntu 20.04
Here is the log after running "make docker" command. I did run "make docker-clean" in prior
The text was updated successfully, but these errors were encountered: