Skip to content

Commit

Permalink
added revise to install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
behinger committed Oct 13, 2023
1 parent e07f9cc commit 9bc8f11
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions installation/julia.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ AppStore -> JuliaUp, or `winget install julia -s msstore` in CMD
### Mac & Linux
`curl -fsSL https://install.julialang.org | sh` in any shell

# Revise.jl
There is a julia-package `Revise.jl` that everyone should install. To do so open a julia REPL (=command line) and execute the following lines:
```julia
using Pkg
Pkg.add("Revise")
```

and that's it. Revise automatically screens the active packages and updates the function if it detects code changes. Similar to `autoreload 2` in ipython.

# VSCode
To install VSCode (the recommended IDE), go to [this link](https://code.visualstudio.com/download) and download + install the correct package.

Expand Down

0 comments on commit 9bc8f11

Please sign in to comment.