Changes between Version 20 and Version 21 of MacBuild


Ignore:
Timestamp:
Feb 15, 2016 10:08:29 AM (8 years ago)
Author:
wojciech
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • MacBuild

    v20 v21  
    6767easy_install-2.6 py2app 
    6868}}} 
     69 
     70== Buliding !SasView on MAC OSX 10.11 (El Capitan) ==  
     71There are some issues with matplotlib and wxPython installation on 10.11 distribution. 
     72Below are listed potential solutions to this problems. 
     73 
     74If Matplotlib complains about UTF-8 format, the simple solution includes adding two lines to .bashrc 
     75{{{ 
     76export LC_ALL=en_US.UTF-8 
     77export LANG=en_US.UTF-8 
     78}}} 
     79 
     80However, if there is a problem with wxPython installation, namely cococa or carbon pacakges don't work, one can get away with this problems by installing wx through brew: 
     81{{{ 
     82brew install wxpython --framework 
     83}}} 
     84 
     85Brew itself can be installed using 
     86{{{ 
     87ruby -e "$(curl -fsSL \ 
     88https://raw.githubusercontent.com/Homebrew/install/master/install)" 
     89}}}