Difference between revisions of "Linux install"

From relax wiki
Jump to navigation Jump to search
(Redirected page to Installation linux)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
== linux install ==
+
#REDIRECT [[Installation_linux]]
<source lang="bash">
 
sudo yum install python ;
 
sudo yum install scons ;
 
sudo yum install wxPython ;
 
sudo yum install grace ;
 
 
 
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 .. ;
 
</source>
 
 
 
== test python installation ==
 
<source lang="python">
 
>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__
 
'...'
 
</source>
 
 
 
== build relax ==
 
<source lang="bash">
 
svn co svn://svn.gna.org/svn/relax/branches/relax_disp relax_disp
 
cd relax_disp
 
scons
 
 
 
# Optional building of the user manual, if a LaTeX installation is available
 
scons user_manual_pdf
 
</source>
 
 
 
== Add to path ==
 
<source lang="bash">
 
cd relax_disp
 
echo "setenv PATH $PWD"':$PATH' >> $HOME/.cshrc
 
</source>
 
 
 
==
 

Latest revision as of 09:06, 25 June 2013

Redirect to: