Rhino8 ScriptEditor: Where to find NuGet package locations?

I am trying to use the new ScriptEditor for IronPython, CPython and C#. My expertise is in python and not C#. I want to use a nuget package within C# and also in IronPython or CPython. I think the best solution would be to install it with C# #r “nuget: package name, package version” and reference the *.dll within my python scripts. Where are the nuget packages located on my file system, if I use #r “nuget: package name, package version”?

By default they get installed under %HOMEPATH%/.nuget/packages/

1 Like