From 576c4bf412d746d2e7f4f1e1b0604a2026f436e4 Mon Sep 17 00:00:00 2001 From: Stefan Karpinski Date: Mon, 24 Oct 2016 11:16:00 -0400 Subject: [PATCH] change standard and system depots to /usr/local (#6) --- Pkg3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pkg3.md b/Pkg3.md index d89f05e..3e05cfb 100644 --- a/Pkg3.md +++ b/Pkg3.md @@ -2,9 +2,9 @@ A **depot** is a file system location where we keep infrastructure related to Julia package management: registries, libraries, packages, and environments. There are typically at least three of these: -- **Standard depot:** default packages and libraries that ship with a specific version of Julia. This depot is strictly read-only. These versions of libraries and packages serve as a fallback when no other depots available. If you delete or disable this depot as well, standard packages will be unavailable. Example: `/usr/julia/standard`. +- **Standard depot:** default packages and libraries that ship with a specific version of Julia. This depot is strictly read-only. These versions of libraries and packages serve as a fallback when no other depots available. If you delete or disable this depot as well, standard packages will be unavailable. Example: `/usr/local/share/julia/standard`. -- **System depot:** package versions and libraries installed here are available to everyone on the system. They are typically only writable by administrators. If users want to add or upgrade packages, they will do so in their individual user depots. Example: `/usr/julia/system`. +- **System depot:** package versions and libraries installed here are available to everyone on the system. They are typically only writable by administrators. If users want to add or upgrade packages, they will do so in their individual user depots. Example: `/usr/local/share/julia/system`. - **User depot:** package versions and libraries installed by a user. Example: `~/.julia/`.