You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,10 @@ If you use [`juliaup`](https://github.com/JuliaLang/juliaup) you can install 1.1
48
48
```sh
49
49
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
50
```
51
-
to install a CLI executable `searchable-pdf`. You can re-run this to update it.
51
+
to install a CLI executable `searchable-pdf` to the `bin` directory in your Julia depot (`~/.julia` by default). You will likely need to add your bin directory to your PATH, e.g.
52
+
```sh
53
+
export PATH="/Users/eph/.julia/bin:$PATH"
54
+
```
55
+
which can go in a shell startup script (e.g. `~/.bashrc` or `~/.zshrc`).
52
56
53
-
Here, we use `JULIA_LOAD_PATH`to ensure the global environment is not used.
0 commit comments