1

How to download the stable version of wxPython for Ubuntu 16.04 and Python 2.7 version?

Melebius
  • 11,431
  • 9
  • 52
  • 78
Dinesh
  • 129
  • Is it a stable version ? I am already using python-wxgtk3.0 is already the newest version (3.0.2.0+dfsg-1build1) . But I don't know whether it's stable version or not. – Dinesh Apr 10 '18 at 07:00

1 Answers1

1

To install the stable version of wxPython for Python 2.7 from the default Ubuntu repositories, open the terminal and type:

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

wxPython 4.0.1 has been released. To get the GTK3 wxPython builds for Ubuntu 16.04 you can use a pip command like this:

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