Includes sample notebooks from https://github.com/dotnet/interactive/tree/main/samples
Last active
December 7, 2024 17:06
-
-
Save manics/672202ca300b7a936e112e790ec9038c to your computer and use it in GitHub Desktop.
Jupyter dotnet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deno | |
channels: | |
- conda-forge | |
dependencies: | |
- dotnet>=8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# Update environment to include dotnet env | |
. /srv/conda/bin/activate notebook | |
# https://github.com/dotnet/interactive/blob/v1.0.5530010/docs/NotebookswithJupyter.md | |
dotnet tool install Microsoft.dotnet-interactive --tool-path /srv/conda/envs/notebook/bin | |
dotnet interactive jupyter install | |
jupyter kernelspec list | grep csharp | |
# Download samples | |
curl -sfL https://github.com/dotnet/interactive/archive/refs/heads/main.tar.gz | tar -xzf - --strip-components=1 interactive-main/samples/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment