C# jupyter notebook

先按C# jupyter 内核
1.dotnet tool install -g dotnet-try —安装 dotnet-try ,卸载命令 dotnet tool uninstall -g dotnet-try

  2.dotnet tool list -g ---查看当前的工具列表,这条命令可以学习

  3.dotnet try jupyter install ---用dotnet-try,去安装jupyter 。
  注:这个是别人的教程,我已安装过了,当时没保留。

安装成功后:
C# jupyter notebook_第1张图片

C# jupyter notebook_第2张图片
重点:
出现的问题
C# jupyter notebook_第3张图片

解决方案,需要删除相应的内核及dotnet-try ,然后把dotnet-interactive替换原来的try。

jupyter kernelspec uninstall .net-fsharp —删除F#
jupyter kernelspec uninstall .net-csharp —删除C#
dotnet tool uninstall -g dotnet-try —删除try

接下来安装 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

安装完先试一下成功否
否:
C# jupyter notebook_第4张图片
OK!!完成!
在这里插入图片描述

你可能感兴趣的:(c#,jupyter,开发语言)