Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install wxPython on Mac os Mavericks

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-cocoa-py2.7.pkg” is damaged and can’t be opened. You should eject the disk image.

Anyone have any ideas to get around this, thanks.

like image 596
ng150716 Avatar asked Jan 19 '14 22:01

ng150716


1 Answers

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 /
like image 110
abarnert Avatar answered Oct 19 '22 23:10

abarnert