Changes between Initial Version and Version 1 of Ticket #98
- Timestamp:
- 02/07/07 15:25:04 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #98
- Property Resolution → fixed
- Property Status new → closed
-
Ticket #98 – Description
initial v1 4 4 5 5 It changes the AIPSPATH to: 6 {{{ 6 7 os.environ['AIPSPATH'] 7 8 Out[8]: '/opt/casa2/darwin/python/2.5/asap darwin somwhere' 8 9 }}} 9 10 Is it possible to have a variable different from AIPSPATH used as this prevents smooth integration with the rest of CASA. 10 11 Currently, it's worked around by: 12 {{{ 11 13 casapath = os.environ['AIPSPATH'] 12 14 import asap 13 15 os.environ['AIPSPATH'] = casapath 14 16 }}}