Update Installation and Testing authored by Kummer, Florian's avatar Kummer, Florian
...@@ -139,6 +139,11 @@ Available kernels: ...@@ -139,6 +139,11 @@ Available kernels:
```code ```code
dotnet tool install -g --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive dotnet tool install -g --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive
``` ```
If you were not using root/superuser priviliges, you might have to modify the path like
```
export PATH="$PATH:/home/xxxxxxx/.dotnet/tools"
```
in your `.bashrc`, where `xxxxxxx` is the name of your home directory.
3. Then install the Jupyter kernel: 3. Then install the Jupyter kernel:
```code ```code
dotnet interactive jupyter install dotnet interactive jupyter install
... ...
......