Difference between revisions of "Installation mac"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
The python-devel and scons packages are only required if the C modules need to be compiled for your system. <br> | The python-devel and scons packages are only required if the C modules need to be compiled for your system. <br> | ||
The [http://plasma-gate.weizmann.ac.il/Grace/ Grace] software is used for visualisation of 2D data sets. | The [http://plasma-gate.weizmann.ac.il/Grace/ Grace] software is used for visualisation of 2D data sets. | ||
+ | |||
+ | == homebrew == | ||
+ | See this [http://thread.gmane.org/gmane.science.nmr.relax.user/1365 email thread.] <br> | ||
+ | |||
+ | |||
=== macports === | === macports === | ||
+ | Not explained yet. Please provide your solution, if you have it | ||
== Minfx and Bmrblib == | == Minfx and Bmrblib == |
Revision as of 17:38, 20 July 2013
Contents
Installing the relax dependencies
The python-devel and scons packages are only required if the C modules need to be compiled for your system.
The Grace software is used for visualisation of 2D data sets.
homebrew
See this email thread.
macports
Not explained yet. Please provide your solution, if you have it
Minfx and Bmrblib
Remember to check, if there are newer versions of minfx and bmrblib.
The minfx and bmrblib libraries can be installed on all Linux systems by typing:
wget http://download.gna.org/minfx/minfx-1.0.5.tar.gz
tar -xzf minfx-1.0.5.tar.gz
cd minfx-1.0.5
python setup.py install
cd ..
wget http://download.gna.org/bmrblib/bmrblib-1.0.3.tar.gz
tar -xzf bmrblib-1.0.3.tar.gz
cd bmrblib-1.0.3
python setup.py install
cd ..
Testing the Python installation
Before installing relax, it is best to be sure that the Python modules are functional by importing them:
$ python
Python 2.6.6 (r266:84292, Oct 12 2012, 14:23:48)
[GCC 4.4.6 20120305 (Red Hat 4.4.6-4)] on linux2
>>> import wx
>>> wx.__file__
'...'
>>> import bmrblib
>>> bmrblib.__file__
'...'
>>> import minfx
>>> minfx.__file__
'...'