From 5483b6a2286b76e5a6ac2419ad64e041ac54221c Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 14 Nov 2017 17:33:58 +0100 Subject: [PATCH] no precompilation remark, add pkg3 clone, pkg dir add information I was missing when installing and remove remark about precompilation, which doesn't seem to be true anymore. --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0fca4e2c5cc65..1d921edf35447 100644 --- a/README.md +++ b/README.md @@ -16,16 +16,19 @@ Before you can use this, install its dependencies: Pkg.add("SHA") Pkg.add("TerminalMenus") Pkg.clone("https://github.com/StefanKarpinski/TOML.jl.git") +Pkg.clone("https://github.com/StefanKarpinski/Pkg3.jl.git") ``` -Now load `Pkg3` in Julia 0.6 (0.6 only with precompilation off) to add packages and load them: +Now load `Pkg3` in Julia 0.6 to add packages and load them. +Right now, packages will be installed to `joinpath(homedir(), ".julia", "packages")`, so they won't influnce the packages that you already have installed. ```jl -$ path/to/julia.6/julia --compilecache=no +$ path/to/julia.6/julia julia> using Pkg3 ``` + This gives you a `pkg> ` REPL mode, activated (for now) by the `]` key. Currently, this supports three operations: `add`, `rm` and `up`: ```jl