I want to install wxpython module on Ubuntu 16.04.

Asked 2 years ago, Updated 2 years ago, 21 views

You are about to install Python 3 wx module on Ubuntu server 16.04. In the cell window pip3 install -U --pre -f --trusted-host https://wxpython.org/Phoenix/snapshot-builds/linux/gtk3/ubuntu-16.04/wxPython_Phoenix-3.0.3.dev2873+5fec882-cp36-cp36m-linux_x86_64.whl Aren't you writing it down?

https://wxpython.org/Phoenix/snapshot-builds/README.txt The tutorial here says to do the same as below

Since there are various options for distro and wx port (GTK2 or GTK3) then the files can not all be located in the same folder like we can do for the Windows and OSX builds. This just simply means that you'll need to drill down a little further to find the URL to give to pip. For example, to get the GTK3 Phoenix builds for Ubuntu 16.04 (and 16.10, LinuxMint 18, and probably others) you can use a pip command like this:

pip install -U --pre \
    -f https://wxpython.org/Phoenix/snapshot-builds/linux/gtk3/ubuntu-16.04 \
    wxPython

Am I doing something wrong?

python

2022-09-21 17:36

1 Answers

You can install the wheel as shown in the question.

There is no content of the problem about what the problem is??

I am also using mint 18.1 (Mint is Ubuntu based).)

I installed the wheel in the Python docker image and it works well.

However, you need to know that one xwindow you use is gtk2/3 based and install it.

There are versions of gtk2 and gtk3, respectively. Since I am mint mate, I installed gtk2 for you.

However, if you are using gnome3, you must install the for gtk3.

And I said Ubuntu server...If it's the ubuntu server version, it's the version without xwindow. If you want to use a gui toolkit like wxpython, of course you need xwindow...


2022-09-21 17:36

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.