Difference between revisions of "Installation mac mavericks os x"

From relax wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
= Installation =
 
= Installation =
 
== Install brew as 'linux' package manager ==
 
You can [http://brew.sh/ read about brew here.]<br>
 
In short, it is like a package manager for mac, where you will be able to get linux programs to mac.
 
<source lang="bash">
 
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
 
</source>
 
  
 
== Download a python distribution which include wxPython ==
 
== Download a python distribution which include wxPython ==
Line 26: Line 19:
 
The macosx-x86_64 installer does not include wxPython, which a lot of ETS relies on. Even though ETS supports the use of PySide as a backend, things are much less stable under Qt. Therefore, if you want to use ETS, we recommned using the 32-bit EPD on Mac OSX.  
 
The macosx-x86_64 installer does not include wxPython, which a lot of ETS relies on. Even though ETS supports the use of PySide as a backend, things are much less stable under Qt. Therefore, if you want to use ETS, we recommned using the 32-bit EPD on Mac OSX.  
 
</blockquote>
 
</blockquote>
 +
 +
 +
== Install brew as 'linux' package manager ==
 +
You can [http://brew.sh/ read about brew here.]<br>
 +
In short, it is like a package manager for mac, where you will be able to get linux programs to mac.
 +
<source lang="bash">
 +
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
 +
</source>

Revision as of 17:40, 7 December 2013

Installation

Download a python distribution which include wxPython

At the time for this post, (Dec 2013), the installation of wxPython2.9-osx-cocoa-py2.7 made hickups and crashes.
This is reported here and here.

The problem is based on the wxPython version and 32/64 bit issues.
It is therefore strongly recommended to install the 32 bit python package distribution.

If one installs the "epd" enthought python distribution, this will include a working wxPython.
https://www.enthought.com/repo/epd/installers/

Specifically download and install:
epd-7.3-2-macosx-i386.dmg

Special note about 64-bit Mac OSX

The macosx-x86_64 installer does not include wxPython, which a lot of ETS relies on. Even though ETS supports the use of PySide as a backend, things are much less stable under Qt. Therefore, if you want to use ETS, we recommned using the 32-bit EPD on Mac OSX.


Install brew as 'linux' package manager

You can read about brew here.
In short, it is like a package manager for mac, where you will be able to get linux programs to mac.

 ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"