我是编码的新手。我真的非常喜欢它并且已经通过了许多Python 3的教程,并感受到基础知识的出现。我现在开始考虑gui创作。我首先开始使用tkinter,但很快就认定pyqt5对我有好处。我已经开始从zetcode中找到一个真正帮助我的教程。
我现在遇到了一个名为pyqt设计师的东西,它看起来像是一个重要的字符串...我唯一的问题是,我在我的系统上找不到它。我可以找到pyqt designer.dll,但我知道如何启动。我正在运行Windows 10,pyqt5和最新的Python 3.5安装。
答案 0 :(得分:14)
我遇到了同样的问题。
我修复了使用
安装其他工具的问题pip安装PyQt5-tools
然后我找到了" designer.exe" buildscript {
ext {
springBootVersion = '1.4.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
jar {
baseName = 'push'
version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile("mysql:mysql-connector-java:5.1.34")
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.thymeleaf:thymeleaf-spring4')
compile('org.springframework.boot:spring-boot-starter-security')
compile('org.springframework.boot:spring-boot-starter-web')
// https://mvnrepository.com/artifact/commons-lang/commons-lang
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
testCompile('org.springframework.boot:spring-boot-starter-test')
}
答案 1 :(得分:0)
如果您使用其中一个Windows binary packages,它应该创建一个PyQt子菜单,其中包含Qt Designer的菜单项(以及其他内容)。或者,您可以通过在“运行”对话框或“命令提示符”窗口中输入designer
来启动它。