Skip to content

Instantly share code, notes, and snippets.

@manics
Last active December 7, 2024 17:06
Show Gist options
  • Save manics/672202ca300b7a936e112e790ec9038c to your computer and use it in GitHub Desktop.
Save manics/672202ca300b7a936e112e790ec9038c to your computer and use it in GitHub Desktop.
Jupyter dotnet
name: deno
channels:
- conda-forge
dependencies:
- dotnet>=8
#!/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