Changes between Version 26 and Version 27 of ASAPSourceInstall
- Timestamp:
- 05/02/07 13:32:13 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ASAPSourceInstall
v26 v27 1 1 = Installing ASAP and dependencies from source = 2 2 3 * ''' Rpfits'''4 Download [ http://www.atnf.csiro.au/pub/software/rpfits/rpfits.tar.gz rpfits]3 * '''rpfits''' 4 Download [ftp://ftp.atnf.csiro.au/pub/software/rpfits/rpfits.tar.gz rpfits] 5 5 {{{ 6 6 tar zxvf rpfits.tar.gz; cd rpfits/linux … … 8 8 }}} 9 9 10 * ''' CASA''' (aips++)11 Download [ftp://ftp.atnf.csiro.au/pub/software/ asap/casa/casa_asap2.1.tar.bz2 casa_asap2.1])10 * '''wcslib''' 11 Download [ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib.tar.gz wcslib] 12 12 {{{ 13 tar jxvf casa_asap.tar.bz2; cd casa_asap 14 sh configure.sh 15 (read README and decide if you need to edit linux/UNKNOWN_SITE/makedefs) 16 sh build.sh 13 tar zxvf wcslib.tar.gz; cd wcslib 14 touch C/*.l 15 make install 17 16 }}} 18 17 19 Depending on whether you use (t)csh 18 * '''casacore''' (aips++) 19 Download [http://casacore.googlecode.com/files/casacore-0.1.1.tar.bz2 casacore-0.1.1]) 20 20 {{{ 21 source aipsinit.csh 22 }}} 23 or bash 24 {{{ 25 . aipsinit.sh 26 }}} 21 tar jxvf casacore-0.1.1.tar.bz2; cd casacore-0.1.1 22 python setup.py prefix=/usr/local install 23 }}} 24 Patience... 27 25 28 26 * ASAP 29 27 (You need to have subversion installed) 30 28 {{{ 31 svn co http://sourcecode.atnf.csiro.au/repos/asap/ branches/Release2.1 asap2.132 cd asap2. 129 svn co http://sourcecode.atnf.csiro.au/repos/asap/tags/asap2.2.0 30 cd asap2.2.0 33 31 }}} 34 32 35 33 You need to have the scons package installed (see o/s specific notes) 36 34 {{{ 37 scons 35 scons mode=release casacoreroot=/usr/local 38 36 }}} 39 40 If scons fails with {{{"Checking for casa libraries...no"}}} then you probably forgot to source41 the aipsinit script. If any other check returns "no" please install the corresponding package on42 your machine.43 37 44 38 Now it's probably best to get the asap data repository. … … 52 46 {{{ 53 47 su 54 scons install48 scons mode=release casacoreroot=/usr/local install 55 49 }}} 56 50