本文介绍了我想在 raspberrypi3 上安装 wxpython_phoenix的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 python3.6.1wx 模块

I am trying to run the gui program on raspberrypi3 using python3.6.1 and the wx module

我正在为 raspbian 操作系统寻找 wxpython_phoenix,但不是在 https://wxpython.org/Phoenix/snapshot-builds/linux/.你介意安装 debian8 吗?

I'm looking for wxpython_phoenix for the raspbian operating system, but not at https://wxpython.org/Phoenix/snapshot-builds/linux/. Do you mind installing debian8?

我正在尝试通过参考手册来安装它.sudo pip3 install --upgrade --pre -f https://wxpython.org/Phoenix/snapshotbuilds/linux/gtk3/debian-8/wxPython-4.0.0a3.dev3059+4a5c5d9-cp34-cp34m-linux_x86_64.whl

I am trying to install this by referring to the manual. sudo pip3 install --upgrade --pre -f https://wxpython.org/Phoenix/snapshotbuilds/linux/gtk3/debian-8/wxPython-4.0.0a3.dev3059+4a5c5d9-cp34-cp34m-linux_x86_64.whl

但不是因为它与Linux操作系统不同吗?

But is not it because it is different from the Linux operating system?

推荐答案

wxPython 4 现已发布,它基于 Phoenix.你可以像这样安装它:

wxPython 4 is out now, which is based on Phoenix. You can just install it like this:

pip install wxPython

请注意,您可能需要在安装 wxPython 之前安装 webkit,因为当 webkit 不存在时,我的失败了.wxPython 的创建者正在开发一个更新,很快就会忽略这类事情.

Note that you may need to install webkit BEFORE you install wxPython as I have had mine fail when webkit isn't there. The creators of wxPython are working on an update that will ignore this sort of thing soon.

这篇关于我想在 raspberrypi3 上安装 wxpython_phoenix的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 20:14