Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

No matching distribution found for acme==3.3.0 #73

Description

@liweijian

I got the error as follows:

372.8 Obtaining file:///opt/lemur
372.8   Preparing metadata (setup.py): started
373.3   Preparing metadata (setup.py): finished with status 'done'
373.8 INFO: pip is looking at multiple versions of lemur to determine which version is compatible with other requirements. This could take a while.
373.8 ERROR: Could not find a version that satisfies the requirement acme==3.3.0 (from lemur) (from versions: 0.0.0.dev20151006, 0.0.0.dev20151008, 0.0.0.dev20151017, 0.0.0.dev20151020, 0.0.0.dev20151021, 0.0.0.dev20151024, 0.0.0.dev20151030, 0.0.0.dev20151104, 0.0.0.dev20151107, 0.0.0.dev20151108, 0.0.0.dev20151114, 0.0.0.dev20151123, 0.0.0.dev20151201, 0.1.0, 0.1.1, 0.2.0, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.5.0, 0.6.0, 0.7.0, 0.8.0, 0.8.1, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.10.0, 0.10.1, 0.10.2, 0.11.0, 0.11.1, 0.12.0, 0.13.0, 0.14.0, 0.14.1, 0.14.2, 0.15.0, 0.16.0, 0.17.0, 0.18.0, 0.18.1, 0.18.2, 0.19.0, 0.20.0, 0.21.0, 0.21.1, 0.22.0, 0.22.1, 0.22.2, 0.23.0, 0.24.0, 0.25.0, 0.25.1, 0.26.0, 0.26.1, 0.27.0, 0.27.1, 0.28.0, 0.29.0, 0.29.1, 0.30.0, 0.30.1, 0.30.2, 0.31.0, 0.32.0, 0.33.0, 0.33.1, 0.34.0, 0.34.1, 0.34.2, 0.35.0, 0.35.1, 0.36.0, 0.37.0, 0.37.1, 0.37.2, 0.38.0, 0.39.0, 0.40.0, 0.40.1, 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.10.0, 1.10.1, 1.11.0, 1.12.0, 1.13.0, 1.14.0, 1.15.0, 1.16.0, 1.17.0, 1.18.0, 1.19.0, 1.20.0, 1.21.0, 1.22.0, 1.23.0, 1.24.0, 1.25.0, 1.26.0, 1.27.0, 1.28.0, 1.29.0, 1.30.0, 1.31.0, 1.32.0, 2.0.0, 2.1.0, 2.2.0, 2.3.0, 2.4.0, 2.5.0, 2.6.0, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.7.4, 2.8.0, 2.9.0, 2.10.0, 2.11.0, 2.11.1, 3.0.0, 3.0.1)
374.1 ERROR: No matching distribution found for acme==3.3.0
------
Dockerfile:13
--------------------
  12 |
  13 | >>> RUN apt-get update && \
  14 | >>>     apt-get -y --no-install-recommends upgrade && \
  15 | >>>     apt-get install -y --no-install-recommends libpq-dev curl build-essential locales libffi-dev libsasl2-dev libldap2-dev \
  16 | >>>         dh-autoreconf git python3-dev python3-pip python3-venv python3-wheel nodejs npm && \
  17 | >>>     locale-gen en_US.UTF-8 && export LC_ALL=en_US.UTF-8 && \
  18 | >>>     npm config set registry https://registry.npmjs.org/ && \
  19 | >>>     npm install npm -g && \
  20 | >>>     echo "Running with nodejs:" && node -v && \
  21 | >>>     python3 -m venv /opt/venv && \
  22 | >>>     echo "Running with python:" && /opt/venv/bin/python3 -c 'import platform; print(platform.python_version())' && \
  23 | >>>     /opt/venv/bin/python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel && \
  24 | >>>     /opt/venv/bin/python3 -m pip install --no-cache-dir -e . && \
  25 | >>>     npm install --unsafe-perm && \
  26 | >>>     node_modules/.bin/gulp --cwd /opt/lemur build && \
  27 | >>>     node_modules/.bin/gulp --cwd /opt/lemur package && \
  28 | >>>     npm cache clean --force && \
  29 | >>>     rm -rf node_modules && \
  30 | >>>     python3 -c 'print(" \033[32m BUILDER DONE \033[0m ")'
  31 |
--------------------
ERROR: failed to solve: process "/bin/sh -c apt-get update &&     apt-get -y --no-install-recommends upgrade &&     apt-get install -y --no-install-recommends libpq-dev curl build-essential locales libffi-dev libsasl2-dev libldap2-dev         dh-autoreconf git python3-dev python3-pip python3-venv python3-wheel nodejs npm &&     locale-gen en_US.UTF-8 && export LC_ALL=en_US.UTF-8 &&     npm config set registry https://registry.npmjs.org/ &&     npm install npm -g &&     echo \"Running with nodejs:\" && node -v &&     python3 -m venv /opt/venv &&     echo \"Running with python:\" && /opt/venv/bin/python3 -c 'import platform; print(platform.python_version())' &&     /opt/venv/bin/python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel &&     /opt/venv/bin/python3 -m pip install --no-cache-dir -e . &&     npm install --unsafe-perm &&     node_modules/.bin/gulp --cwd /opt/lemur build &&     node_modules/.bin/gulp --cwd /opt/lemur package &&     npm cache clean --force &&     rm -rf node_modules &&     python3 -c 'print(\" \\033[32m BUILDER DONE \\033[0m \")'" did not complete successfully: exit code: 1
ERROR: Service 'lemur' failed to build : Build failed

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions