❔ ✅ Is there a way to execute a .NET Interactive notebook from the command line?
I found this related Stack Overflow post, which comes pretty close to what I want.
However I'm expecting rather to run something like
dotnet-interactive run "path/to/my/notebook.dib"
https://stackoverflow.com/questions/67801621/can-i-run-net-interactive-ipynb-from-command-lineStack Overflow
Can I run .NET Interactive (.ipynb) from Command Line?
I have a .NET Interactive Notebook, works fine when I execute from VS Code with the extension
This contains a sequence of PowerShell scripts, that I use for local builds on my system
I want to re-u...
8 Replies
I can run
dotnet-interactive jupyter notebook.dib
but I get smacked with a huge ugly exception
Alas, this may just not be possible https://github.com/dotnet/interactive/issues/839
GitHub
.NET Interactive Notebooks should have a programmatic way of execut...
Is your feature request related to a problem? Please describe. .NET Interactive Notebooks should have a programmatic way of executing them. Describe the solution you'd like When executing .NET ...
I was able to work around this by converting the notebook to
.ipynb
and executing it via papermill
https://papermill.readthedocs.io/en/latest/usage-execute.html
!closeClosed!
Stack Overflow
Can I run .NET Interactive (.ipynb) from Command Line?
I have a .NET Interactive Notebook, works fine when I execute from VS Code with the extension
This contains a sequence of PowerShell scripts, that I use for local builds on my system
I want to re-u...
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.I commented on the StackOverflow issue but repeating it here. You can use
dotnet-repl
: https://github.com/jonsequitur/dotnet-repl.Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.