Skip to content

Commit 8e7df80

Browse files
authored
Update NotebookswithJupyter.md
1 parent 9d1ecd3 commit 8e7df80

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

docs/NotebookswithJupyter.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,26 @@ Both of these methods can read and write `.ipynb` files, which are fully portabl
1414

1515
First, make sure you have the following installed:
1616

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).
1818
* **Jupyter**. An easy way to install Jupyter is through [Anaconda](https://www.anaconda.com/distribution).
1919

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:
2121

2222
```console
2323
> jupyter kernelspec list
2424
python3 ~\jupyter\kernels\python3
25+
> dotnet --version
26+
6.0.100
2527
```
2628

29+
(The minor version isn't important.)
30+
2731
* Next, in an **ordinary console**, install the `dotnet interactive` global tool:
2832

2933
```console
30-
> dotnet tool install -g --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive
31-
```
32-
33-
*Note: The Azure feed is where the most up-to-date version will be published:*
34-
35-
```
36-
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json
34+
> dotnet tool install -g Microsoft.dotnet-interactive
3735
```
3836

39-
Older, more stable versions will be made available on [NuGet.org](https://nuget.org).
40-
4137
* **Switch back to your Anaconda prompt** and install the .NET kernel by running the following:
4238

4339
```console
@@ -50,7 +46,7 @@ Installing using jupyter kernelspec module.
5046
Installed ".NET (PowerShell)" kernel.
5147
```
5248

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:
5450

5551
```console
5652
> jupyter kernelspec list

0 commit comments

Comments
 (0)