23 lines
471 B
Markdown
23 lines
471 B
Markdown
# ubuntu 安装 pyqt4
|
|
- ubuntu14.04 64 python 2.6
|
|
- refer to
|
|
- http://blog.csdn.net/tao_627/article/details/46529587
|
|
|
|
## 安装
|
|
``` bash
|
|
$ sudo apt-get install libxext6 libxext-dev libqt4-dev libqt4-gui libqt4-sql
|
|
$ sudo apt-get install qt4-dev-tools qt4-doc qt4-qtconfig qt4-demos qt4-designer
|
|
$ sudo apt-get install python-qt4
|
|
$ sudo apt-get install python-qt4-*
|
|
$ sudo apt-get install python-qscintilla2
|
|
```
|
|
|
|
|
|
## 测试
|
|
``` bash
|
|
$ python
|
|
|
|
>>> import PyQt4
|
|
>>>
|
|
```
|