Macaulay2 » Documentation
Packages » Macaulay2Doc :: applicationDirectory
next | previous | forward | backward | up | index | toc

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/m2user/.Macaulay2/

Code

../../../../../Macaulay2/m2/startup.m2.in:262:31-271:15: --source code:
     applicationDirectory = () -> (
          if getenv "HOME" =!= ""
          then (
               getenv "HOME" | "/" |
               -- we allow the user to change applicationDirectorySuffix to a string or a function
               if instance(applicationDirectorySuffix, Function)
               then applicationDirectorySuffix()
               else applicationDirectorySuffix
               )
          else error "environment variable HOME not set"
          );

See also

For the programmer

The object applicationDirectory is a function closure.