如何下载wxPython的稳定版本?

如何下载wxPython的稳定版本?

如何下载适用于 Ubuntu 16.04 和 Python 2.7 版本的 wxPython 稳定版本?

答案1

要从默认的 Ubuntu 存储库安装适用于 Python 2.7 的 wxPython 稳定版本,请打开终端并输入:

sudo apt install python-wxtools  # tools from the wxPython distribution  

wxPython 4.0.1 已发布。要获取适用于 Ubuntu 16.04 的 GTK3 wxPython 版本,您可以使用如下 pip 命令:

sudo apt install python-pip  
sudo pip install -U \
    -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 \
    wxPython

相关内容