python-qt5
python-qt5 copied to clipboard
Unofficial PyQt5 via PyPI for Python 2.7 64-bit on Windows
Hi, I try to get the path to an existing file, but the resulting path has a weird prefix, like it is moved in a temporary directory: for a file...
I have installed python 3.6.2 from python.org and installed PyQt5 tools running the command pip3 install pyqt5-tools==5.9.0.1.2. I could locate designer.exe file and run that file to create a .ui...
I have a Dockerfile like this ``` FROM ubuntu:20.04 ENV DEBIAN_FRONTEND=noninteractive RUN adduser --quiet --disabled-password qtuser && usermod -a -G video qtuser RUN apt-get update -y \ && apt-get install...
I have a python code like this which converts url to pdf ``` import sys from PyQt5 import QtWidgets, QtWebEngineWidgets from PyQt5.QtCore import QUrl, QTimer, QSizeF from PyQt5.QtGui import QPageLayout,...
I download this `PyQt5`, but i have long download?
When 2018 year ,I were setup ubuntu16.04+python2.7+pyqt5 environment, I found 0.1.10 version only support windows, but 0.1.8 version support windows and linux both. so I install pyqt5 on ubunut16.04 used...
When running this code from a shell on MacOS: ``` from sgtk.platform.qt5 import QtPrintSupport QPrinter = QtPrintSupport.QPrinter # Set up the printer printer = QPrinter(QPrinter.HighResolution) printer.setPaperSize(QPrinter.A4) printer.setResolution(300) # Note: this...
Cannot instantiate a QApplication. ``` python import sys from PyQt5 import QtWidgets app = QtWidgets.QApplication(sys.argv) ``` Results in: ``` bat This application failed to start because it could not find...
Hi, I am trying to make work my python code on Mac OS Catalina 10.15 with Python 3.9 I get this error message when I run my code: ``` Traceback...