我正在尝试将一些包安装到我的docker环境中,以便在容器中使用它们。但当我运行Dockerfile时,我会收到以下错误:
ERROR: Could not find a version that satisfies the requirement qt5 (from versions: none)
ERROR: No matching distribution found for qt5
有人能帮我解决这个问题吗?
我的Dockerfile:
FROM python:latest
WORKDIR /usr/src/app
RUN python3 -m pip install --upgrade pip
RUN pip3 install qt5
RUN pip3 install pyqt5
COPY ./server.py /app/
COPY ./hinto.py /app/
注意:我已经在主机(Macbook m1(上成功运行了这些包
来源https://pypi.org/project/PyQt5/
PyQt5的GPL版本可以从PyPI:安装
使用安装
pip3 install PyQt5