From febe7d56174d31be278a26a3fb9bf2f801097e11 Mon Sep 17 00:00:00 2001 From: Katharine Hyatt Date: Thu, 22 Aug 2024 15:56:45 -0400 Subject: [PATCH] Update README.md (#37) Fix a typo and link to `juliaup` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe9246b..7a3060b 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Julia v1.*.* and the Example package v0.5.*: - `juliapkg.executable()` returns a compatible Julia executable. - `juliapkg.project()` returns the project into which the packages have been installed. -- `juliapkg.resolve(force=False)` ensures all the depdencies are installed. You don't +- `juliapkg.resolve(force=False)` ensures all the dependencies are installed. You don't normally need to do this because the other functions resolve automatically. ## Details @@ -82,7 +82,7 @@ JuliaPkg tries the following strategies in order to find Julia on your system: - If the `-X juliapkg-exe` argument to `python` is set, that is used. - If the environment variable `PYTHON_JULIAPKG_EXE` is set, that is used. - If `julia` is in your `PATH`, and is compatible, that is used. -- If `juliaup` is in your `PATH`, it is used to install a compatible version of Julia. +- If [`juliaup`](https://github.com/JuliaLang/juliaup) is in your `PATH`, it is used to install a compatible version of Julia. - Otherwise, JuliaPkg downloads a compatible version of Julia and installs it into the Julia project.