Changes between Initial Version and Version 1 of ASAPSourceInstall


Ignore:
Timestamp:
07/13/06 11:22:40 (18 years ago)
Author:
Chris Phillips
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ASAPSourceInstall

    v1 v1  
     1= Installing ASAP and dependencies from source =
     2
     3 * '''Rpfits'''
     4  Download [http://www.atnf.csiro.au/pub/software/rpfits/rpfits-2.9.tar.gz rpfits-2.9]
     5{{{
     6   tar zxvf rpfits-2.9.tar.gz; cd rpfits/linux
     7   make install
     8}}}
     9
     10 * '''CASA''' (aips++)
     11  Download [http://www.atnf.csiro.au/pub/software/asap/casa_asap.tar.bz2 casa_asap]
     12{{{
     13   tar jxvf casa_asap.tar.bz2; cd casa_asap
     14   sh build.sh
     15}}}
     16
     17Depending on whether you use (t)csh
     18{{{
     19   source aipsinit.csh
     20}}}
     21or bash
     22{{{
     23   . aipsinit.sh
     24}}}
     25
     26 * ASAP
     27  Download [http://www.atnf.csiro.au/pub/software/asap/asap_src.tar.bz2 asap_src]
     28{{{
     29   tar jxvf asap_src.tar.bz2; cd asap2.0
     30   make
     31}}}
     32  Check if the module works. If the following statement returns without a message, all is good!
     33{{{
     34  cd src; python -c "import _asap"; cd ..
     35}}}
     36  Install it to the default location:
     37{{{
     38   make install
     39}}}
     40
     41 * ASAP Data
     42  Download [http://www.atnf.csiro.au/pub/software/asap/asap_data.tar.bz2 asap_data]
     43{{{
     44   cd /usr/local/share/asap
     45   tar jxvf <download_directory>/asap_data.tar.bz2
     46}}}
     47
     48Now you can test it by executing:
     49{{{
     50asap
     51}}}
     52