Install wxPython on Mac os Mavericks

后端 未结 4 1286
广开言路
广开言路 2020-12-16 01:19

I am on a Macbook Air, running Mavericks. Today I downloaded wxPython via their website, however, when I click on the install package I get:

wxPython3.0-osx-         


        
4条回答
  •  清酒与你
    2020-12-16 02:01

    According to #14523, the problem is that the package is not signed (and it's an old-style package, which isn't fully supported anymore, which is why you get the wrong error message, and the usual workaround of context-clicking Open doesn't work).

    There are two workarounds:

    First, you can turn off Gatekeeper (in System Preferences, Security & Privacy, General, select the "Allow apps downloads from: … Anywhere" radio button), install wxPython, then turn Gatekeeper back on.

    Alternatively, you can install from the command line:

    sudo installer -pkg /path/to/wxPython.pkg -target /
    

提交回复
热议问题