Could not find a version that satisfies the requirement apryse-data-extraction

Hi #tech-support , I have executed the following command to install the apryse-data-extraction module, but I encountered the following error:
$ pip install apryse-data-extraction --extra-index-url=https://pypi.apryse.com

Looking in indexes: https://pypi.org/simple, https://pypi.apryse.com
ERROR: Could not find a version that satisfies the requirement apryse-data-extraction (from versions: none)
ERROR: No matching distribution found for apryse-data-extraction

I used the Dockerfile below to install it.

FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive


RUN apt update
RUN apt update && apt install -y software-properties-common

RUN apt update
RUN add-apt-repository ppa:deadsnakes/ppa -y
RUN apt install -y python3.9 python3.9-venv
RUN apt install -y python3-pip

COPY ./requirements /requirements

RUN pip install -r /requirements/base.txt

RUN pip install apryse-sdk --extra-index-url=https://pypi.apryse.com

RUN pip install apryse-data-extraction --extra-index-url=https://pypi.apryse.com 

When installing apryse-sdk, it was successful, but when installing apryse-data-extraction, I encountered the above error. Thank you for your support.

1 Like

I am having the same issue

1 Like

I solved this issue. I was trying to install this on an arm version of linux and recieved the above error. Switching to x86 (amd64 in docker) allows pip to load the module.

If you still have issues reply and I can try to help.

cheers…

1 Like