You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/NotebookswithJupyter.md
+8-12Lines changed: 8 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,30 +14,26 @@ Both of these methods can read and write `.ipynb` files, which are fully portabl
14
14
15
15
First, make sure you have the following installed:
16
16
17
-
* The [.NET 5 SDK](https://dotnet.microsoft.com/download/dotnet/5.0).
17
+
* The [.NET 6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0).
18
18
***Jupyter**. An easy way to install Jupyter is through [Anaconda](https://www.anaconda.com/distribution).
19
19
20
-
*Open the **Anaconda Prompt** (Windows) or Terminal (macOS) and verify that Jupyter is installed and present on the path:
20
+
*You can verify the installations by opening the **Anaconda Prompt** (Windows) or a terminal (macOS, Linux) and running the following commands to ensure that Jupyter and .NET are installed and present on the path:
21
21
22
22
```console
23
23
> jupyter kernelspec list
24
24
python3 ~\jupyter\kernels\python3
25
+
> dotnet --version
26
+
6.0.100
25
27
```
26
28
29
+
(The minor version isn't important.)
30
+
27
31
* Next, in an **ordinary console**, install the `dotnet interactive` global tool:
Older, more stable versions will be made available on [NuGet.org](https://nuget.org).
40
-
41
37
***Switch back to your Anaconda prompt** and install the .NET kernel by running the following:
42
38
43
39
```console
@@ -50,7 +46,7 @@ Installing using jupyter kernelspec module.
50
46
Installed ".NET (PowerShell)" kernel.
51
47
```
52
48
53
-
* You can verify the installation by running the following again in the **Anaconda Prompt**:
49
+
* You can verify the installation by running the following again in the **Anaconda Prompt**. You should now see a `kernelspec` entry for each of the default supported .NET languages:
0 commit comments