We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f918d6f commit b3e6702Copy full SHA for b3e6702
README.md
@@ -46,6 +46,8 @@ Supports `@main` and on v1.12 an app `searchable-pdf`.
46
47
If you use [`juliaup`](https://github.com/JuliaLang/juliaup) you can install 1.12 with `juliaup add nightly`, then run
48
```sh
49
-julia +nightly --startup-file=no -e 'using Pkg; Pkg.Apps.add(url="https://github.com/ericphanson/SearchablePDFs.jl")'
+JULIA_LOAD_PATH="@:@stdlib" julia +nightly --startup-file=no -e 'using Pkg; Pkg.activate(temp=true); Pkg.Apps.add(url="https://github.com/ericphanson/SearchablePDFs.jl")'
50
```
51
to install a CLI executable `searchable-pdf`. You can re-run this to update it.
52
+
53
+Here, we use `JULIA_LOAD_PATH` to ensure the global environment is not used.
0 commit comments