| 69 | |
| 70 | == Buliding !SasView on MAC OSX 10.11 (El Capitan) == |
| 71 | There are some issues with matplotlib and wxPython installation on 10.11 distribution. |
| 72 | Below are listed potential solutions to this problems. |
| 73 | |
| 74 | If Matplotlib complains about UTF-8 format, the simple solution includes adding two lines to .bashrc |
| 75 | {{{ |
| 76 | export LC_ALL=en_US.UTF-8 |
| 77 | export LANG=en_US.UTF-8 |
| 78 | }}} |
| 79 | |
| 80 | However, 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 | {{{ |
| 82 | brew install wxpython --framework |
| 83 | }}} |
| 84 | |
| 85 | Brew itself can be installed using |
| 86 | {{{ |
| 87 | ruby -e "$(curl -fsSL \ |
| 88 | https://raw.githubusercontent.com/Homebrew/install/master/install)" |
| 89 | }}} |