博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
玩转树莓派-RaspBerry,使用Python开发定制界面
阅读量:6821 次
发布时间:2019-06-26

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

hot3.png

1 准备SD卡8G以上,16G更佳。

    编译过程中,会耗用大量存储空间。一定在编译之前运行sudo raspi-config,选择expand file system扩展SD卡的分区。

    如果空间不够,会导致运行挂起。使用df -h可查看存储卡的可用容量。

2 更新资源的索引清单

sudo apt-get update (从服务上下载索引清单)sudo apt-get upgrade (比较索引清单,更新依赖关系)

3 安装 python-dev

sudo apt-get install python-dev

    否则在编译SIP时,会提示 fatal error: Python.h: No such file or directory

4 安装libqt4-dev

sudo apt-get install libqt4-dev#或者sudo apt-get install qt4-dev-tools

    否则在编译PyQt时会提示 Error:Make sure you have a working Qt qmake on your PATH or use the -q argument to explicitly specify a working Qt qmake 5。

    依次安装SIP和PyQt。

    安装SIP:

wget http://sourceforge.net/projects/pyqt/files/sip/sip-4.16.6/sip-4.16.6.tar.gztar vxf sip-4.16.6.tar.gzcd sip-4.16.6python configure.pymakemake install

    安装PyQt4:

#wget http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.10/PyQt-x11-gpl-4.10.tar.gzwget http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.10.4/PyQt-x11-gpl-4.10.4.tar.gz/downloadcp download PyQt-x11-gpl-4.10.4.tar.gz  tar vxf PyQt-x11-gpl-4.10.4tar.gzcd PyQt-xll-gpl-4.10.4python configure.pymakemake install

5 运行Python&GUI的源代码

    进入PyQT下面的Examples目录,使用python *.py方式运行。

    下面这张图是周末两天的成果,虽说很是简陋,但运行成功的一刻,一切都值得了:)。

转载于:https://my.oschina.net/u/2306127/blog/387833

你可能感兴趣的文章
Python之路——Python基础二
查看>>
搜索技巧——持续更新
查看>>
云播放开源地址
查看>>
Win7批处理文件设置代理服务器
查看>>
【cl】selenium实例2:打开百度,输入hello world
查看>>
安卓 按键精灵 命令
查看>>
web编码
查看>>
virtualenv沙箱
查看>>
Redis(序)应用场景
查看>>
POJ1611 The Suspects
查看>>
[NOIP2015] 提高组 洛谷P2678 跳石头
查看>>
Bzoj3041 水叮当的舞步
查看>>
Bzoj3545 [ONTAK2010]Peaks
查看>>
POJ2892 Tunnel Warfare
查看>>
ASP.NET实用技巧(一)
查看>>
Android开发历程_7(ListView和ProgressBar控件的学习)
查看>>
UI Elements in Cocoa
查看>>
朴素贝叶斯
查看>>
linux 一键安装lnmp环境
查看>>
2019春第八周作业
查看>>