dotnet / interactive

.NET Interactive combines the power of .NET with many other languages to create notebooks, REPLs, and embedded coding experiences. Share code, explore data, write, and learn across your apps in ways you couldn't before.
MIT License
2.8k stars 374 forks source link

Issue in downloading .NET interactive #3477

Open ErrQD0303 opened 4 months ago

ErrQD0303 commented 4 months ago

Hello, I'm currently using Visual studio code now, but i can't install the Polyglot Notebooks, and it keeps saying Installing .NET interactive version 1.0.512901 and it runs over and over again, so i can't use Polyglot Notebooks, can you give me an instruction of how i fix this problem! image image

FatCatCoder commented 3 months ago

I had a similar issue, I resolved it by inspecting the extension logs and noticed the extension was attempting to acquire an auth token for a private NuGet package source I had installed in the Nuget.Config. I had to work around this by altering the install process to use "--interactive" and for add an extra output log to display the device code to complete the process. I don't know why it wasn't using the key already saved in the Nuget.Config...

This is still an issue and will prevent me from upgrading the extension in the future and is not the ideal solution. I hope his helps you get around it for now too.

I believe the issue is being tracked here as well. Good Luck!

ErrQD0303 commented 3 months ago

Thank you, I will try your solution