@@ -4,21 +4,21 @@ This information will likely change as more support for `python` and `.NET` is i
44
55## Installation details
66
7- ### Step 1: Install .NET 6
7+ ### Step 1: Install .NET 8
88
9- You will need version 6 of .NET which is available from Microsoft below
9+ You will need version 8 of .NET which is available from Microsoft below
1010
11- https://dotnet.microsoft.com/en-us/download/dotnet/6 .0
11+ https://dotnet.microsoft.com/en-us/download/dotnet/8 .0
1212
1313
1414*** On MacOS:***
15- Save everything to ` $HOME/Documents/Code/dotnet6 `
15+ Save everything to ` $HOME/Documents/Code/dotnet8 `
1616
1717Do not forget to update your ` ~/.bash_profile ` or whatever you use so that this directory is in your path. Also define ` DOTNET_ROOT `
1818
19- PATH=$PATH:$HOME/Documents/Code/dotnet6
19+ PATH=$PATH:$HOME/Documents/Code/dotnet8
2020
21- export DOTNET_ROOT=$HOME/Documents/Code/dotnet6
21+ export DOTNET_ROOT=$HOME/Documents/Code/dotnet8
2222
2323### Step 2: Clone the scripting repository
2424
@@ -44,7 +44,7 @@ Next start a `JupyterLab` notebook to verify that things are installed correctly
4444 import clr
4545 clr.AddReference("System")
4646 from System import Console
47- Console.WriteLine("Hello from .NET 6 !")
47+ Console.WriteLine("Hello from .NET 8 !")
4848
4949The final test is importing from ` Vts.dll `
5050
@@ -83,4 +83,4 @@ To run `VTS` programs in `python` include the following the header
8383 from Vts.MonteCarlo.PhotonData import *
8484 from Vts.MonteCarlo.PostProcessing import *
8585 from System import Array, Double
86- ```
86+ ```
0 commit comments