I'm complety new to Python (coming from Java) and trying to use wxPython library (GUI). I'm using PyCharm as IDE. Does anyone know how to use library with Python ?
Thanks a lot
I'm complety new to Python (coming from Java) and trying to use wxPython library (GUI). I'm using PyCharm as IDE. Does anyone know how to use library with Python ?
Thanks a lot
There are semi-official installation instructions on the wxPython wiki.
If you are installing wxPython Phoenix, you can actually use pip:
python -m pip install --no-index --find-links=http://wxpython.org/Phoenix/snapshot-builds/ --trusted-host wxpython.org wxPython_Phoenix
If you are on Linux, check your package manager. wxPython is usually included, although it may be an older version. The latest version of Classic is 3.0.2.0. Phoenix is where the project is going and will likely have all or most of the new updates applied to it. If you go with Phoenix, then use the method above as it won't be in the package manager.
If you want to use Classic and it's not in the package manager, then you will have to build wxPython yourself. There are instructions here
Windows and Mac have installers that you can use that can be found here:
This is also the location for the wxPython tarball.
wxPython is also supported by Anaconda to some degree. See the following: