Skip to content

Instantly share code, notes, and snippets.

@wsmelton
Last active February 25, 2020 20:17
Show Gist options
  • Save wsmelton/984a45f779bd38dd67895208ea43f238 to your computer and use it in GitHub Desktop.
Save wsmelton/984a45f779bd38dd67895208ea43f238 to your computer and use it in GitHub Desktop.
Quick function to start up JupyterLab using dotnet interactive
function jl {
[cmdletbinding()]
param ([string]$folder)
if ([String]::IsNullOrEmpty($folder)) {
& jupyter lab --notebook-dir=$pwd
} else {
& jupyter lab --notebook-dir=$folder
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment