本文主要是介绍wxPython的安装,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装了一下wxPython,比较麻烦,记在这里方便以后使用:)
1。安装wxWiget包:
解压后在其目录下建立bld文件夹,然后运行configure:
cd bld
../ configure --prefix =/ opt / wx / 2.8
--with-gtk
--with-gnomeprint
--with-opengl
--enable- debug
--enable-geometry
--enable-graphics_ctx
--enable-sound --with-sdl
--enable-mediactrl
--enable-display
--disable-debugreport
--enable-unicode
--with-libjpeg = builtin
--with-libpng = builtin
--with-libtiff = builtin
--with-zlib = builtin
2。编译安装:
制作一个脚本,内容如下:
&& make - C contrib / src / gizmos $ *
&& make - C contrib / src / stc $ *
命名为 .make , 放到bld目录下
然后运行:
.make install
3。安装wxPython:
解压,然后在它的wxPython目录里运行:
WX_CONFIG=/opt/wx/2.8/bin/wx-config 中的路径为configure时设置的路径
4。设置环境变量:
export PYTHONPATH =/ usr / local / wxPython - 2.8 . 3.0 / wxPython
我将wxPython的源码文件夹copy到了/usr/local/ 下,所以第二项是这样
最后将以上两项添加道home目录下的.bashrc中,以后用起来方便点:)
测试一下,运行wxPython目录下的demo:
这篇关于wxPython的安装的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!