Difference between revisions of "Installation mac mavericks os x"

From relax wiki
Jump to navigation Jump to search
 
(21 intermediate revisions by 2 users not shown)
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.]
  
 
The problem is based on the wxPython version and 32/64 bit issues. <br>
 
The problem is based on the wxPython version and 32/64 bit issues. <br>
It is therefore strongly recommended to install the 32 bit python package distribution.
+
It is therefore strongly recommended to install the a python package distribution, which solves this.
 
 
If one installs the "epd" enthought python distribution, this will include a working wxPython.<br>
 
SIgn-up with preferably a university email to get the [https://www.enthought.com/products/canopy/academic/ Academic License], and you can then download for free
 
https://www.enthought.com/repo/epd/installers/
 
 
 
Specifically download and install:<br>
 
epd-7.x-x-macosx-'''i386'''.dmg
 
  
Special note about 64-bit Mac OSX
+
Please procede with this guide [[Epd_canopy | Epd Canopy]].
  
<blockquote>
+
The benefits on installing this system is following:
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.  
+
# Total stand-alone installation. No messing with system files.
</blockquote>
+
# wxPython issues and compilations are taken care of
 +
# 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">
 
$ which python
 
$ which python
/Library/Frameworks/Python.framework/Versions/Current/bin/python
+
/Users/XXX/Library/Enthought/Canopy_64bit/User/bin/python
 
</source>
 
</source>
  
Line 31: Line 27:
 
<source lang="python">
 
<source lang="python">
 
$ python
 
$ python
Enthought Python Distribution -- www.enthought.com
+
Enthought Canopy Python 2.7.6 | 64-bit | (default, Apr 11 2014, 11:55:30)
Version: 7.3-2 (32-bit)
+
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
 +
Type "help", "copyright", "credits" or "license" for more information.
  
Python 2.7.3 |EPD 7.3-2 (32-bit)| (default, Apr 12 2012, 11:28:34)
+
>>> import wx; wx.__version__; wx.__file__
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
+
'2.9.2.4'
Type "credits", "demo" or "enthought" for more information.
+
'/Users/tlinnet/Library/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/wx/__init__.pyc'
 +
</source>
  
>>> import wx
+
==== Minfx and Bmrblib ====
>>> wx.__version__; wx.__file__
+
 
'2.8.10.1'
+
# [[Minfx#Install | Minfx]]
'/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/wx/__init__.py'
+
# [[Bmrblib#Install | Bmrblib]]
 +
 
 +
Then check
 +
{{#tag: source|
 +
$ python
 +
import bmrblib; bmrblib.__version__; bmrblib.__file__
 +
'{{current version bmrblib}}'
 +
'/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/bmrblib/__init__.pyc'
 +
 
 +
import minfx; minfx.__version__; minfx.__file__
 +
'{{current version minfx}}'
 +
'/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/minfx/__init__.pyc'
 +
| lang="python"}}
 +
 
 +
 
 +
Check if the have been installed
 +
<source lang="bash">
 +
pip freeze | grep "minfx\|bmrblib"
 
</source>
 
</source>
  
Then install pip
+
== Checking out a relax branch and build with scons ==
 +
{{historical svn}}
 +
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>
 +
You can see the different branches [http://svn.gna.org/viewcvs/relax/ here.] <br>
 +
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:
 
<source lang="bash">
 
<source lang="bash">
$ sudo easy_install pip
+
svn co svn://svn.gna.org/svn/relax/trunk relax_trunk
 
</source>
 
</source>
  
=== Minfx and Bmrblib ===
+
If this svn command does not work, try:
Remember to check, if there are newer versions of [http://download.gna.org/minfx minfx] and [http://download.gna.org/bmrblib bmrblib]. <br>
 
The [https://gna.org/projects/minfx/ minfx] and [https://gna.org/projects/bmrblib/ bmrblib] libraries can be installed on all Linux systems by typing:
 
 
<source lang="bash">
 
<source lang="bash">
cd $HOME/Downloads
+
svn co http://svn.gna.org/svn/relax/trunk relax_trunk
curl http://download.gna.org/minfx/minfx-1.0.5.tar.gz -o minfx-1.0.5.tar.gz
+
</source>
tar -xzf minfx-1.0.5.tar.gz
 
cd minfx-1.0.5
 
sudo pip install -e .
 
cd ..
 
  
curl http://download.gna.org/bmrblib/bmrblib-1.0.3.tar.gz -o bmrblib-1.0.3.tar.gz
+
==== Compilation of the C modules ====
tar -xzf bmrblib-1.0.3.tar.gz
 
cd bmrblib-1.0.3
 
sudo pip install -e .
 
cd ..
 
</source>
 
  
Check if the have been installed
+
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:
 
<source lang="bash">
 
<source lang="bash">
pip freeze | grep "minfx\|bmrblib"
+
cd relax_trunk
 +
scons
 
</source>
 
</source>
  
Line 78: Line 90:
 
  ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
 
  ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
 
</source>
 
</source>
 +
 +
Especially '''xmgrace''' for the plotting facility in mac.
 +
 +
== Install xmgrace ==
 +
'''xmgrace''' is used for plotting.
 +
<source lang="bash">
 +
brew install grace
 +
</source>
 +
Restart the terminal, and try to find xmgrace.
 +
<source lang="bash">
 +
which xmgrace
 +
/usr/local/bin/xmgrace
 +
</source>
 +
 +
If you cannot run xmgrace, you may need to install [http://xquartz.macosforge.org/ xquartz].
  
 
== See also ==
 
== See also ==
 
[[Category:Installation]]
 
[[Category:Installation]]

Latest revision as of 11:52, 27 October 2017

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

Caution  The information in this section is out of date but is kept for historical reasons. The relax source code is now hosted in a git rather than svn repository.

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