When I tried to install torch in alpine, it report there is no version distribution found for it.
FROM alpine:3.18
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools
RUN pip3 install torch # <-- report: Could not find a version that satisfies the requirement torch (from versions: none)