Last active
February 25, 2020 20:17
-
-
Save wsmelton/984a45f779bd38dd67895208ea43f238 to your computer and use it in GitHub Desktop.
Quick function to start up JupyterLab using dotnet interactive
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
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