added revise to install instructions

This commit is contained in:
behinger (s-ccs 001) 2023-10-13 07:13:10 +00:00
parent e07f9cc155
commit 9bc8f11223
1 changed files with 9 additions and 0 deletions

View File

@ -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.