I have installed idl8.2 on my MAC OSX 10.8.
I am now using an IDL routine package, which needs to set some environment variables.
I set these environment variables in .bash_profile, e.g.
dir=/home/user/some_idl_package
caseLIB=$dir/lib
caseEXE=$dir/examples
caseDATA=$dir/data
export IDL_PATH=+$dir:$IDL_PATH
export PATH IDL_PATH caseLIB caseEXE caseDATA
After source .bash_profile, idl woks well in terminal model.
But when I used idlde, these environment variables can not be found. For example, when one routine calls GETENV('caseLIB'), the output of idlde is null.
How to figure out this problem?
Thanks!
|