博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How to set up PyQt4 for python 3.2 in Ubuntu11.10
阅读量:6456 次
发布时间:2019-06-23

本文共 811 字,大约阅读时间需要 2 分钟。

1) Open the synaptic package manager and install python 3.2

2) Open a terminal emulator and type

Code:
sudo apt-get install libqt4-dev

3) Download the program SIP from 

4) extract the folder using tar -xzf sip-4.12.3.tar.gz, cd into folder
5) in terminal emultator, type

Code:
python3.2 configure.pymakesudo make install

now sip is installed

6) install pyqt4 with the command

Code:
sudo apt-get install python-qt4 qt4-dev-tools python-qt4-dev pyqt4-dev-tools

If that didn't work for you, download pyqt4 from 

Untar and install pyqt4 the same way you installed SIP
you should be able to type in terminal

Code:
python3.2>>import sys>>from PyQt4 import QtGui

If you didn't get any errors, you installed everything correctly

Source: Neurobot ()

转载于:https://www.cnblogs.com/MagicLetters/archive/2011/11/20/2256065.html

你可能感兴趣的文章
html学习笔记css
查看>>
vuejs目录介绍
查看>>
IT人的学习方法论-5,也谈IT的创新
查看>>
开店攻略: 现代促销的七种促销策略
查看>>
springboot kafka @@KafkaListener 批处理消息
查看>>
python错误处理/调试/单元测试/文档测试
查看>>
HDU2546题解
查看>>
PHP-mac下的配置及运行
查看>>
输出运算符号时的不同
查看>>
文档流
查看>>
hackerrank---Find a string
查看>>
XMPP即时通讯(代码实现)
查看>>
css文本 颜色3
查看>>
网站计数器代码(jsp版本)
查看>>
闭包模拟静态变量与私有变量
查看>>
第三个Sprint冲刺第六天(燃尽图)
查看>>
1018: C语言程序设计教程(第三版)课后习题6.8
查看>>
Linux Shell简介
查看>>
Neo4j安装&入门&一些优缺点(转)
查看>>
python基础初识介绍以及安装
查看>>