next | previous | forward | backward | up | top | index | toc | home

applicationDirectory -- the path to the user's application directory

Synopsis

Description

The function installPackage, by default, installs packages under the application directory. At program startup, unless the -q option is provided on the command line, an entry will be added to the path so packages can be loaded from there by loadPackage and needsPackage. Moreover, the initialization file, if found there, will be run.

The function applicationDirectorySuffix determines the value of applicationDirectory, and can be modified by the user.

i1 : applicationDirectory()

o1 = /home/dan/.Macaulay2/

See also

Code

-- startup.m2:194-198
     applicationDirectory = () -> (
          if instance(applicationDirectorySuffix, Function)
          then homeDirectory | applicationDirectorySuffix()
          else homeDirectory | applicationDirectorySuffix
          );