1
- # Geant4.jl-tutorial
1
+ ` # Geant4.jl-tutorial
2
2
Materials for the Geant4.jl Tutorial.
3
3
4
4
Read the rendered Jupyter book: https://peremato.github.io/Geant4.jl-tutorial/index.html
@@ -7,7 +7,8 @@ Read the rendered Jupyter book: https://peremato.github.io/Geant4.jl-tutorial/in
7
7
[ ![ Binder] ( https://binderhub.ssl-hep.org/badge_logo.svg )] ( https://binderhub.ssl-hep.org/v2/gh/peremato/Geant4.jl-tutorial/HEAD?labpath=tutorial%2Fdocs%2F01-introduction.ipynb )
8
8
9
9
## Follow the tutorial on a local computer:
10
- To install all what is needed:
10
+ You need to install julia and jupyter in your system. These are the instructions:
11
+ ### Linux or MacOS
11
12
``` bash
12
13
# install Julia
13
14
curl -fsSL https://install.julialang.org | sh
@@ -23,9 +24,27 @@ julia -e 'using IJulia; installkernel("Julia")'
23
24
julia -e ' using IJulia; jupyterlab(dir="tutorial/docs")'
24
25
```
25
26
27
+ ### Windows
28
+ ``` cmd
29
+ REM install Julia from Microsoft Store
30
+ winget install julia -s msstore
31
+
32
+ REM or using the Windows Julia installed from https://julialang.org/downloads/
33
+ REM make sure that julia is added to the PATH
34
+
35
+ REM clone the tutorial repository
36
+ git clone https://github.com/peremato/Geant4.jl-tutorial.git
37
+ cd Geant4.jl-tutorial
38
+
39
+ REM instantiate this project and install jupyter
40
+ set JULIA_PROJECT=@.
41
+ julia -e "using Pkg;Pkg.instantiate()"
42
+ julia -e "using IJulia; installkernel(\"Julia\")"
43
+ julia -e "using IJulia; jupyterlab(dir=\"tutorial/docs\")"
44
+ ```
26
45
- - -
27
46
When not taken from other sources (with its own Copyright and License), this material is:
28
47
29
48
Copyright © 2023 CERN and the authors / contributors.
30
49
31
- Licensed under [ CC-BY-4.0] ( ./LICENSE ) .
50
+ Licensed under [ CC-BY-4.0] ( ./LICENSE ) .`
0 commit comments