Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Global pre-installation of NuGet packages for Polyglot Notebooks #3876

Open
jamesmcroft opened this issue Mar 2, 2025 · 2 comments
Open
Labels
enhancement New feature or request

Comments

@jamesmcroft
Copy link

jamesmcroft commented Mar 2, 2025

Is your feature request related to a problem? Please describe.

Unlike Python Notebooks, where packages installed in the environment are automatically available (potentially via a requirements.txt file, Polyglot Notebooks require an explicit magic command (e.g. #r "nuget: Azure.Identity, 1.13.2") to load a NuGet package. Although it’s possible to pre-install packages (using a runtime store, or global NuGet cache), these aren’t available to the interactive session’s context. This isolation—while excellent for reproducibility and avoiding version conflicts—adds extra boilerplate and complexity that hinders a smooth developer experience.

Describe the solution you'd like

I would like Polyglot Notebooks to support loading NuGet packages from a global/local source. NuGet packages that are installed globally in the development environment (for example, via a devcontainer setup or a pre-populated runtime store) would automatically be referenced in every notebook session without requiring explicit #r "nuget: ..." commands. This functionality should ensure the environment’s packages are available by default, thereby reducing repetitive code and simplifying dependency management across notebooks.

Describe alternatives you've considered

Currently, the only reliable method to load NuGet packages in notebooks is to add an explicit magic command in each notebook.

I approached pre‑installing packages in a global NuGet cache and using a runtime store, but they do not trigger automatic assembly loading in .NET Interactive sessions. The attempt followed these steps:

NuGet Cache Option

  1. Create a dummy .csproj file which includes the necessary NuGet packages to install in the environment, mimicking Python's requirements.txt.
  2. Create a nuget.config at the root of the repo with the following configuration:
<configuration>
  <config>
    <add key="globalPackagesFolder" value="/workspaces/<repo>/packages" />
  </config>
</configuration>
  1. Run dotnet restore

Unfortunately, the packages installed here are ignored by the repo's Notebooks.

.NET Runtime Package Store

As an alternative, attempted to explore an approach using package stores as follows:

  1. Create a dummy .csproj file which includes the necessary NuGet packages to install in the environment, mimicking Python's requirements.txt.
  2. Run dotnet store --manifest requirements.csproj --framework net9.0 --runtime linux-x64 --skip-optimization --output /workspaces/<repo>/share/dotnet/store
  3. Set the DOTNET_SHARED_STORE to the path (as described in the runtime docs - https://github.com/dotnet/runtime/blob/main/docs/design/features/DotNetCore-SharedPackageStore.md)

Again, unfortunately, this also doesn't load the packages into a repo's Notebooks.

Example dummy .csproj file

<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <TargetFrameworks>net8.0;net9.0</TargetFrameworks>
    </PropertyGroup>

    <ItemGroup>
        <PackageReference Include="Azure.Identity" Version="1.13.2" />
        <PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
        <PackageReference Include="DotNetEnv" Version="3.1.1" />
    </ItemGroup>
</Project>
@jamesmcroft jamesmcroft added the enhancement New feature or request label Mar 2, 2025
@jamesmcroft jamesmcroft changed the title Global pre-installation of NuGet packages Global pre-installation of NuGet packages for Polyglot Notebooks Mar 2, 2025
@jamesmcroft
Copy link
Author

While not 100% ideal, a cleaner workaround is to create a Notebook file which imports all the necessary NuGet packages and reference this via a #!import command.

However, I want to be able to appropriately maintain the packages and their versions in GitHub repos using dependabot, like what can be achieved with Python's requirements.txt for Jupyter Notebooks.

@jonsequitur
Copy link
Contributor

This is a compelling idea and your mention of using a .csproj reminds me of #890.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants