Changes between Initial Version and Version 1 of ASAPFedora7Install


Ignore:
Timestamp:
06/06/07 13:48:42 (17 years ago)
Author:
Malte Marquarding
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ASAPFedora7Install

    v1 v1  
     1= Fedora Core 7 =
     2
     3{{{
     4yum -y install cfitsio libstdc++ libgfortran boost python-matplotlib-tk python-numarray lapack blas ipython
     5}}}
     6
     7== Binary packages ==
     8For standard fedora
     9{{{
     10wget http://www.atnf.csiro.au/pub/software/asap/current/asap-2.1.2-fc7.tar.bz2
     11}}}
     12
     13{{{
     14tar jxf asap-2.1.2-fc7.tar.bz2
     15cd asap-2.1.2-fc7
     16su
     17./install
     18}}}
     19
     20=== Notes ===
     21
     22If you get the following error:
     23{{{
     24Loading ASAP...
     25------------------------------------------------------------
     26Traceback (most recent call last):
     27  File "<string>", line 1, in ?
     28  File "/usr/lib/python2.5/site-packages/asap/__init__.py", line 314, in ?
     29    from asap._asap import Log as _asaplog
     30ImportError: /usr/lib/python2.5/site-packages/asap/_asap.so: cannot
     31restore segment prot after reloc: Permission denied
     32
     33}}}
     34
     35Fedora is using SElinux, which makes life hell for the user. Kinda like Windows Vista, protect the system by  not allowing the user to use anything
     36
     37To recitfy the problem as root or sudo execute
     38{{{
     39chcon -t texrel_shlib_t  /usr/lib/python2.5/site-packages/asap/_asap.so
     40}}}
     41
     42== From source ==
     43
     44You need to install the corresponding "-devel" packages.
     45
     46As root
     47{{{
     48
     49}}}