Changes between Initial Version and Version 1 of Ticket #98


Ignore:
Timestamp:
02/07/07 15:25:04 (17 years ago)
Author:
Malte Marquarding
Comment:

Using the AIPSPATH now if it is defined.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #98

    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
  • Ticket #98 – Description

    initial v1  
    44
    55It changes the AIPSPATH to:
     6{{{
    67os.environ['AIPSPATH']
    78Out[8]: '/opt/casa2/darwin/python/2.5/asap darwin somwhere'
    8 
     9}}}
    910Is it possible to have a variable different from AIPSPATH used as this prevents smooth integration with the rest of CASA.
    1011Currently, it's worked around by:
     12{{{
    1113casapath = os.environ['AIPSPATH']
    1214import asap
    1315os.environ['AIPSPATH'] = casapath
    14 
     16}}}