Requirements information

Requirements information:

The "Requirements" section of each software documentation page contains information about what scripts need to be loaded and what C libraries must be included in your interpreter in order to use that software in Isis. Below is more information about each of the possible entries you might see there:
Scripts These files should be loaded in any script that uses this software. In many cases, these scripts may be loaded automatically by the global bootstrap file, but you will need to load them manually if the bootstrap is not used.
Libraries If you are using a private Isis interpreter, you must include these libraries in your Imakefile's LOCAL_LIBRARIES section. Order can make a difference, so be sure the libraries appear in the order specified.
Headers These header files must be included at the top of a private interpreter's main source file. For example, if you see:
isis_library.h
your source file should have this at the top:
#include <isis_library.h>
Binders These functions should be called in a private interpreter's main() function in order to bind the library's functions into Isis.
Other Here you may see information about other libraries that need to be present in order for this software to work.