Install and configure the IDL Astronomy User's Library so that users can use it with IDL. IDL must be installed first!
The source code is stored on GitHub.
cd /usr/local/harris
git clone https://github.com/wlandsman/IDLAstro.git
#!/usr/bin/env bash if [ "x$IDL_PATH" = "x" ]; then export IDL_PATH=/usr/local/harris/IDLAstro/pro else export IDL_PATH=$IDL_PATH:/usr/local/harris/IDLAstro/pro fi
#!/usr/bin/env tcsh if ( ${?IDL_PATH} ) then setenv IDL_PATH ${IDL_PATH}:/usr/local/harris/IDLAstro/pro else setenv IDL_PATH /usr/local/harris/IDLAstro/pro endif