首页 > 其他分享 >PyQt5的安装

PyQt5的安装

时间:2022-10-09 16:11:22浏览次数:42  
标签:__ Life2Coding self PyQt5 sys import 安装

pip install PyQt5

pip install PyQt5-tools

 

在路径下venv\Lib\site-packages\pyqt5_tools\Qt\bin找到designer.exe

 

 life2coding.py

import sys
from  PyQt5.QtCore  import pyqtSlot
from PyQt5.QtWidgets import QApplication,QDialog
from PyQt5.uic import loadUi

class Life2Coding(QDialog):
    def __init__(self):
        super(Life2Coding,self).__init__()
        loadUi('life2coding.ui',self)
        self.setWindowTitle('Life2Coding PyQt5 Gui')
        self.pushButton.clicked.connect(self.on_pushButton_clicked)
    @pyqtSlot()
    def on_pushButton_clicked(self):
        self.label1.setText('welcome:'+self.lineEdit1.text())

app=QApplication(sys.argv)
widget=Life2Coding()
widget.show()
sys.exit(app.exec_())

 

标签:__,Life2Coding,self,PyQt5,sys,import,安装
From: https://www.cnblogs.com/reaptem/p/11733435.html

相关文章

  • Python中使用Mysql(安装篇)
    准备工作importMySQLdbLinux系统自带了Python,但并不是都有这个包,至少我每次拿到一台全新的服务器时候,都发现没有装这个包。这个东西的下载地址是​​http://sourceforge.n......
  • yum安装
    问题问题Thissystemisnotregisteredwithanentitlementserver.Youcanusesubscription-managertoregister.解决办法:将配置文件subscription-manager.conf中......
  • elasticsearch head、kibana 安装和使用
    一、概述1、展示es数据的可视化工具2、eshead可以当作数据展示查看的工具(数据概览),对于查询等操作使用kibana二、安装eshead推荐参考文档:​​Elasticsearch教程(四)elastic......
  • centos7 sqlite-安装升级编译安装
    centos7sqlite-安装升级编译安装升级-编译安装wgethttps://www.sqlite.org/2019/sqlite-autoconf-3290000.tar.gztarzxvfsqlite-autoconf-3290000.tar.gzcdsqlit......
  • zabbix安装
    zabbix安装一、部署lamp首先配置yum网络仓库,更换centos源和epel源,这里使用阿里云[root@rh3~]#curl-o/etc/yum.repos.d/CentOS-Base.repohttps://mirrors.aliyun.......
  • 安装JDK以及配置环境(保姆级)
    1、去官网下载 https://www.oracle.com   往下拉找到java  找到JDK 找到它  找到它   找版本  然后找到对应操作系统的版本下载 ......
  • VS2019 下载NUGet包 本地安装 但没有成功
    1、下载:在网址https://www.nuget.org/中找对应的包版本 2、新建程序包源地址,其地址设置为下载的本地包地址:E:\NuGet离线包;点击更新   3、在程序包管理控制......
  • lnpm php7.4 安装ssh2扩展
    SSH2安装小编以前没有做过,今天听一个朋友说要在centos中使用SSH2了,下面我们来为各位介绍linux系统中安装SSH2扩展步骤详解吧,今天闲来无事,给大伙说一下linux下安装SSH2......
  • 手把手教你玩转 Gitea|在 Windows 系统上安装 Gitea
    Gitea支持在Windows系统上安装和使用。Gitea本身作为一个单体应用程序,即点即用,如需长期驻留作为后台服务并开机运行就要依靠Windows服务工具sc.exe。通过本文,你将......
  • zookeeper下载安装(base)
    1,获取,Apache官网下载 http://zookeeper.apache.org/releases.html我下载下来的,放在网盘上了地址: http://pan.baidu.com/s/1bnm21Jp2,解压出来 tarxvf zookeeper-3.4.......