Hi
I’m trying to pip install aspose-words for my python project, but while locally there is no problem, when I’using the dockerfile from the documentation
# Start image python_3.11_bullseye
FROM python:3.11-bullseye
RUN apt update
RUN apt install -y wget
RUN wget http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.8_all.deb
RUN apt install -y ./ttf-mscorefonts-installer_3.8_all.deb
RUN apt install -y libgdiplus
RUN python3 -m pip install --upgrade pip
# End image python_3.11_bullseye
or other builds from that list I get this error:
pip install aspose-words
ERROR: Could not find a version that satisfies the requirement aspose-words (from versions: none)
ERROR: No matching distribution found for aspose-words
also trying to list all available versions has no result:
pip index versions aspose-words
WARNING: pip index is currently an experimental command. It may be removed/changed in a future release without prior warning.
ERROR: No matching distribution found for aspose-words
Does anyone know what the problem is?