1.安装QT 配置QT PATH 在/etc/profile文件中追加export QTDIR=/usr/local/Qt5.4.2/5.4/gcc_64export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${QTDIR}/libexport PATH=${Q...
分类:
编程语言 时间:
2015-06-23 21:20:28
阅读次数:
174
1. 下载并安装Qt[2015年6月:下载地址]在安装的过程中,会选择安装路径。默认路径为/Users/ijkcherry/Qt5.4.2/。2. 下载并安装SIP[2015年6月:下载地址,安装文档]解压下载的源码包:tar -xvf sip-4.16.7.tar.gz进入目录:cd sip-4....
分类:
其他好文 时间:
2015-06-09 09:44:16
阅读次数:
215
一、使用qt designer拖拽界面。使用qtdesigner拖拽界面:如图左侧导航栏,1:Sources,2:Forms,3:Resouces1:代码,2:Qt Designer的拖拽界面的代码,xml形式的 3:暂未使用,猜测用来放置一些图片、音频、视频之类的。在2:Forms中右键点击,然后...
分类:
其他好文 时间:
2015-06-02 17:02:43
阅读次数:
2773
http://bbs.fishc.com/thread-59816-1-1.htmlhttps://pypi.python.org/pypi/PyQt5/http://www.thehackeruniversity.com/2014/01/23/pyqt5-beginner-tutorial/htt...
分类:
其他好文 时间:
2015-05-31 18:13:10
阅读次数:
149
安装pythonQt
OS: Windows 7 64bits
python version: 3.4
PyQt5下载
Download
Note:
1. 注意选择正确的Python版本和系统位数。
2. 安装PyQt并不需要一些文章中提到的先安装sip和Qt的过程,因为在安装文件中已经包括。
测试是否安装成功
import PyQt5
没报错说明安装成功...
分类:
编程语言 时间:
2015-05-26 01:38:01
阅读次数:
778
一、SIPhttp://www.riverbankcomputing.com/software/sip/download二、Centos6.5 qt 安装1,centos linux系统必须预先以安装x Server(KDE or GNOME)2,wget http://download.qt-pr...
分类:
其他好文 时间:
2015-05-05 01:16:06
阅读次数:
842
import sys
from PyQt5.QtWidgets import QWidget, QLabel, QApplication, QPushButton, QHBoxLayout, QVBoxLayout, QGridLayout
class Example(QWidget):
def __init__(self):
super().__init__()...
分类:
其他好文 时间:
2015-05-02 09:50:17
阅读次数:
266
import sys
from PyQt5.QtWidgets import QWidget, QLabel, QApplication, QLineEdit, QTextEdit, QGridLayout
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()...
分类:
其他好文 时间:
2015-05-02 09:49:28
阅读次数:
213
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QMessageBox
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
...
分类:
其他好文 时间:
2015-04-29 10:12:21
阅读次数:
215
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QDesktopWidget
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
...
分类:
其他好文 时间:
2015-04-29 10:09:32
阅读次数:
154