-
-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installing PyQt5 error on docker image creation #44
Comments
I had a problem with pyqt5 on docker and really only working fine the version 5.14. I 'm try to find a solution for this, maybe create another requirements.txt for only docker image. btw, this is a bug of pyqt did you say to me. |
Thanks @mh4x0f for your work, |
describe here if the bug is only with docker |
This error happens with out docker too |
Hi @mh4x0f, the other issues I had was because I was wrongly running the docker container, so there is no problem with the current scappy version after all. |
@rafonsecad thank's for report, I add a fix to install the version 5.14 on docker build image |
Hello guys, I had this issue yesterday during the installation. Both inside and outside docker. However I do not understand why I am experiencing this during the |
Hi @bobafouette, Yes, I ran into the same issue, and I use the same fix with a normal installation. As far as I understand, raspberry runs on a different architecture(ARM) and for that reason the pyqt5 package docker was trying to install in the raspberry is not the same that the package you find in a x86 architecture. |
Happy to see I am not the only one, and your point on the architecture totally makes sense. |
Error installing PyQt5 on building of the docker image
When docker is creating the image, the
RUN python3.7 -m pip install -r requirements.txt
step fails trying to install PyQt5.Browsing for possible solutions, I came across with this stack overflow answer and set the version of PyQt5 at 5.14 in requirements.txt file
PyQt5==5.14
instead ofPyQt5>=5.14
According to the answer, there is probably a bug in PyQt5 to Pypi.
Reproduce the issue
Steps to reproduce the behavior:
Expected behavior
The docker image should be created without any problems
The text was updated successfully, but these errors were encountered: