skip to Main Content

Can pip install PyQt5 on Alpine Docker?

Here is my Dockerfile: FROM python:3.11-alpine AS app RUN apk update && apk add make automake gcc g++ subversion python3-dev gfortran openblas-dev RUN pip install --upgrade pip WORKDIR /srv When I connect to my container and I launch: pip install…

VIEW QUESTION

Error installing pyqt5 under aarch64 architecture – Debian

I'm trying to install pyqt5 V5.15.2 on an emulate qemu aarch64 debian distro, but it fails with the following trace: root@debian-arm64:~# pip install pyqt5==5.15.2 --config-settings --confirm-license= --verbose Using pip 23.0.1 from /usr/local/lib/python3.9/dist-packages/pip (python 3.9) Collecting pyqt5==5.15.2 Using cached PyQt5-5.15.2.tar.gz (3.3…

VIEW QUESTION

Ubuntu – PyQt5 not found

I get the following error ImportError: cannot import name 'QtCore' from 'PyQt5' (/usr/lib/python3/dist-packages/PyQt5/init.py) which makes me think that the module is not installed. When I try to install it I get: pip3 install PyQt5 Defaulting to user installation because normal…

VIEW QUESTION
Back To Top
Search