diff --git a/M2/Macaulay2/m2/system.m2 b/M2/Macaulay2/m2/system.m2 index 37e0eba1d5d..a911d0437ef 100644 --- a/M2/Macaulay2/m2/system.m2 +++ b/M2/Macaulay2/m2/system.m2 @@ -87,23 +87,20 @@ your "path", so Macaulay2's "load" and "input" commands will automatically look there for your files. You may obtain source code for Macaulay2 packages and install them yourself -with the function "installPackage". Behind the scenes, Macaulay2 will use the -subdirectory "encap/" to house the code for those packages in separate -subdirectories. The subdirectory "local/" will hold a single merged directory -tree for those packages, with symbolic links to the files of the packages. +with the function "installPackage". By default, these packages will be +installed to the "local/" subdirectory. Good luck! -http://www.math.uiuc.edu/Macaulay2/ +https://macaulay2.com/ Daniel R. Grayson , -Michael R. Stillman +Michael E. Stillman /// setUpApplicationDirectory = () -> ( dir := applicationDirectory(); makeDirectory(dir); - makeDirectory(dir|"encap/"); makeDirectory(dir|"local/"); makeDirectory(dir|"code/"); f := (n,c) -> (n = dir|n; if not fileExists n then n << c << close);