Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion samples/notebooks/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,19 @@ Enter the notebooks folder, and run this to launch the browser interface:

# Troubleshooting

If you are unable to get the Nuget package, run one of the `force-nuget-download` scripts for your machine.
Comment thread
danmarshall marked this conversation as resolved.
## Nuget

If you are unable to get the Nuget package, first list your Nuget sources:
```sh
dotnet nuget list source
```
If you see `No sources found.`, add the NuGet official package source:
```sh
dotnet nuget add source "https://api.nuget.org/v3/index.json" --name "nuget.org"
```
Run `dotnet nuget list source` again to verify the source was added.

## Polyglot Notebooks

If somehow the notebooks don't work, run these commands:

Expand Down