improved description fro Julia environment

development
Martin Scheidt 2022-04-30 12:37:22 +02:00
parent 80388e635f
commit 9b00bb8b12
1 changed files with 14 additions and 2 deletions

View File

@ -7,11 +7,23 @@ Please note we have a code of conduct, please follow it in all your interactions
# Julia Development Environment
```
Link your local git repository to Julia:
```console
$ ln -s ~/path/to/TrainRun.jl ~/.julia/dev/TrainRun
```
and use `Revise.jl`
Have a look here how to develop Julia packages: https://github.com/ShozenD/julia-pkg-dev
You might want to use `Revise.jl` as well:
```julia
Pkg.add("Revise")
```
and then just load with `using Revise` (preferably by putting it in the `~/.julia/config/startup.jl` file)
```julia
(@v1.x) pkg> develop TrainRun
(@v1.x) pkg> activate TrainRun
(TrainRun) pkg>
```
# Pull Request Process