From b73551a365f3da02826be2340fa77ab014b3b651 Mon Sep 17 00:00:00 2001 From: Bryan Weber Date: Tue, 12 Mar 2024 19:27:45 -0400 Subject: [PATCH] Update install instructions for Julia --- INSTALL.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index dcdf992..7fa4b9b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,5 +1,7 @@ # Install/Build the Book -The repo is set up to use [mise](https://mise.jdx.dev) to install required tools. Once `mise` is installed, changing into this directory should install the correct tools with the right versions. +The repo is set up to use [mise](https://mise.jdx.dev) to install required tools. Once `mise` is installed, changing into this directory should install the correct tools with the right versions. If not, run `mise install` to install everything. After that, running `pdm install` should install the dependencies. Then `doit build_jb` will build the book. + +If you want to work on the book, you may also need to install Julia dependencies. `mise` should install Julia. Running `julia --project=. -e 'using Pkg; Pkg.instantiate(); Pkg.precompile();'` should install dependencies in a local project.