Difference between revisions of "Installation mac mavericks os x"

From relax wiki
Jump to navigation Jump to search
(→‎Minfx and Bmrblib: Use of the {{current version minfx}} and {{current version bmrblib}} templates to keep the version numbers current.)
(Forced creation of a TOC - this will improve the formatting on the main page 'Did you know...' section, and fixes for the sectioning depths.)
Line 1: Line 1:
= Installation =
+
__TOC__
  
== Download a python distribution which include wxPython ==
+
== 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.<br>
 
At the time for this post, (Dec 2013), the installation of wxPython2.9-osx-cocoa-py2.7 made hickups and crashes.<br>
 
This is reported [https://gna.org/bugs/?21324 here] and [http://thread.gmane.org/gmane.science.nmr.relax.devel/4787 here.]
 
This is reported [https://gna.org/bugs/?21324 here] and [http://thread.gmane.org/gmane.science.nmr.relax.devel/4787 here.]
Line 15: Line 17:
 
# Canopy includes a code editor. Not perfect, but a good start.
 
# Canopy includes a code editor. Not perfect, but a good start.
  
== Testing the Python installation ==
+
=== Testing the Python installation ===
 
After installation, restart your terminal, and check path to python.
 
After installation, restart your terminal, and check path to python.
 
<source lang="bash">
 
<source lang="bash">
Line 34: Line 36:
 
</source>
 
</source>
  
=== Minfx and Bmrblib ===
+
==== Minfx and Bmrblib ====
  
 
# [[Minfx#Install | Minfx]]
 
# [[Minfx#Install | Minfx]]
Line 57: Line 59:
 
</source>
 
</source>
  
= Checking out a relax branch and build with scons =
+
== Checking out a relax branch and build with scons ==
  
 
If you would like to play with relax branch rather than the main [http://www.nmr-relax.com/download.html relax downloads], the [http://subversion.tigris.org/ Subversion] program should first be installed. <br>
 
If you would like to play with relax branch rather than the main [http://www.nmr-relax.com/download.html relax downloads], the [http://subversion.tigris.org/ Subversion] program should first be installed. <br>
Line 63: Line 65:
 
First the relax sources can be checked out of the source code repository and the C modules compiled:
 
First the relax sources can be checked out of the source code repository and the C modules compiled:
  
=== Using subversion or git ===
+
==== Using subversion or git ====
 
To check out the trunk branch using the subversion client, simply type:
 
To check out the trunk branch using the subversion client, simply type:
 
<source lang="bash">
 
<source lang="bash">
Line 74: Line 76:
 
</source>
 
</source>
  
=== Compilation of the C modules ===
+
==== Compilation of the C modules ====
  
 
For the R1 and R2 and relaxation dispersion analyses, the relax C modules must be compiled.  This is done using the scons program, by simply typing:
 
For the R1 and R2 and relaxation dispersion analyses, the relax C modules must be compiled.  This is done using the scons program, by simply typing:
Line 82: Line 84:
 
</source>
 
</source>
  
= Install brew as 'linux' package manager =
+
== Install brew as 'linux' package manager ==
 
You can [http://brew.sh/ read about brew here.]<br>
 
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.
 
In short, it is like a package manager for mac, where you will be able to get linux programs to mac.

Revision as of 16:55, 19 October 2015

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 a python package distribution, which solves this.

Please procede with this guide Epd Canopy.

The benefits on installing this system is following:

  1. Total stand-alone installation. No messing with system files.
  2. wxPython issues and compilations are taken care of
  3. Canopy includes a code editor. Not perfect, but a good start.

Testing the Python installation

After installation, restart your terminal, and check path to python.

$ which python
/Users/XXX/Library/Enthought/Canopy_64bit/User/bin/python

Before installing relax, it is best to be sure that the Python modules are functional by trying to import them and print the version of them:

$ python
Enthought Canopy Python 2.7.6 | 64-bit | (default, Apr 11 2014, 11:55:30) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

>>> import wx; wx.__version__; wx.__file__
'2.9.2.4'
'/Users/tlinnet/Library/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/wx/__init__.pyc'

Minfx and Bmrblib

  1. Minfx
  2. Bmrblib

Then check

$ python
import bmrblib; bmrblib.__version__; bmrblib.__file__
'1.0.4'
'/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/bmrblib/__init__.pyc'

import minfx; minfx.__version__; minfx.__file__
'1.0.12'
'/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/minfx/__init__.pyc'


Check if the have been installed

pip freeze | grep "minfx\|bmrblib"

Checking out a relax branch and build with scons

If you would like to play with relax branch rather than the main relax downloads, the Subversion program should first be installed.
You can see the different branches here.
First the relax sources can be checked out of the source code repository and the C modules compiled:

Using subversion or git

To check out the trunk branch using the subversion client, simply type:

svn co svn://svn.gna.org/svn/relax/trunk relax_trunk

If this svn command does not work, try:

svn co http://svn.gna.org/svn/relax/trunk relax_trunk

Compilation of the C modules

For the R1 and R2 and relaxation dispersion analyses, the relax C modules must be compiled. This is done using the scons program, by simply typing:

cd relax_trunk
scons

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)"

Especially xmgrace for the plotting facility in mac.

Install xmgrace

xmgrace is used for plotting.

brew install grace

Restart the terminal, and try to find xmgrace.

which xmgrace
/usr/local/bin/xmgrace

If you cannot run xmgrace, you may need to install xquartz.

See also