Open main menu

Changes

Anaconda linux mac

221 bytes removed, 13:24, 24 October 2017
# Check version
python -c "import matplotlib;print matplotlib.__version__"
</syntaxhighlight>
 
Install mpi4py
<syntaxhighlight lang="bash">
# https://anaconda.org/anaconda/mpi4py
conda install -c anaconda mpi4py
 
# Check version
python -c "import mpi4py;print mpi4py.__version__"
</syntaxhighlight>
# Clone relax
git clone https://git.code.sf.net/p/nmr-relax/code nmr-relax-code
# OR
git clone https://github.com/nmr-relax/relax.git nmr-relax-code
 
cd nmr-relax-code
Restart terminal to take effect
 
== Using a version number ==
The "main" branch is the developing branch.<br>
It can contain bugs and be unstable.
 
You can update to latest version with
<syntaxhighlight lang="bash">
git pull
</syntaxhighlight>
 
You can also "check-out" the last "working version" of relax with
<syntaxhighlight lang="bash">
# This will show tags used for the numbering
git tag -l '[0-9]*' -n
 
# If the latest version is 4.0.3
git checkout tags/4.0.3
# See version in top of output
./relax -i
</syntaxhighlight>
== See also ==
[[Category:Installation]]
Trusted, Bureaucrats
1,382

edits