When I try to install wxPython, it shows an error:
> The Installer could not install the software because there was no > software found to in
I posted an answer about building from source and @memoselyk posted a useful answer on how to convert a package to install on newer OSX.
However, I am finding the easy solution is to use the Brew package manager.
Below are the steps I used.
ruby -e "$(curl -fsSL \
https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install wxpython --framework
Test for error:
python -c 'import wx'
Done, but the following may also be relevant.
sudo pip uninstall wxPython
sudo pip uninstall wxPython-Phoenix
unset PYTHONPATH
unset DYLD_LIBRARY_PATH
unset DYLD_FRAMEWORK_PATH
After installing wx you may need to run the following if it was a dirty install:
- brew link --overwrite wxmac
- brew doctor wxPython
(and follow the very useful directions if something is detected)
If you want access to other builds, this isn't the method for you, but for the 3.0.2.0
'Classic' release, I think this is the way to go.
brew upgrade wxPython
would bump up to a newer release, if there ever is one.