Encountering Issues with Selenium in C#

Question: Is it possible to utilize the Selenium library in Replit C#?

Background: I want to work with the Selenium library in C#. I know Replit has the ability to use Selenium. In fact, I have written a working Selenium script with Replit in Python. Selenium has official support for C# as well, so it should be possible. However, I cannot even launch the webdriver. See below for more information, but what stands out to me is this line in the error message.

error while loading shared libraries: libglib-2.0.so.0: cannot open shared object file: No such file or directory

I have looked into this error message but to no avail. Any ideas?

Repl link: https://replit.com/@ThomasBerhe1/Selenium-Test-C#main.cs

Code Snippet:

using OpenQA.Selenium.Chrome;

public class Program
{
  public static void Main()
  {
    var driver = new ChromeDriver();
            
    driver.Navigate().GoToUrl("https://selenium.dev");
    
    driver.Quit();
  }
}

Error Message:

/home/runner/.cache/selenium/chromedriver/linux64/115.0.5790.170/chromedriver: error while loading shared libraries: libglib-2.0.so.0: cannot open shared object file: No such file or directory
Cannot assign requested address (localhost:43609)
Unhandled exception. OpenQA.Selenium.WebDriverException: Cannot start the driver service on http://localhost:43609/
   at OpenQA.Selenium.DriverService.Start()
   at OpenQA.Selenium.Remote.DriverServiceCommandExecutor.Execute(Command commandToExecute)
   at OpenQA.Selenium.WebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters)
   at OpenQA.Selenium.WebDriver.StartSession(ICapabilities desiredCapabilities)
   at OpenQA.Selenium.WebDriver..ctor(ICommandExecutor executor, ICapabilities capabilities)
   at OpenQA.Selenium.Chromium.ChromiumDriver..ctor(ChromiumDriverService service, ChromiumOptions options, TimeSpan commandTimeout)
   at OpenQA.Selenium.Chrome.ChromeDriver..ctor(ChromeDriverService service, ChromeOptions options, TimeSpan commandTimeout)
   at OpenQA.Selenium.Chrome.ChromeDriver..ctor(ChromeOptions options)
   at OpenQA.Selenium.Chrome.ChromeDriver..ctor()
   at Program.Main() in /home/runner/Selenium-Test-C/main.cs:line 7