From 179ffb0fbfc3871f00930e2f13a80dfebede34c8 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Mon, 16 Feb 2026 08:45:09 -0800 Subject: [PATCH] Fix interop for docker container --- WebServer/Controllers/PythonInterop.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebServer/Controllers/PythonInterop.cs b/WebServer/Controllers/PythonInterop.cs index c45f6112..58417707 100644 --- a/WebServer/Controllers/PythonInterop.cs +++ b/WebServer/Controllers/PythonInterop.cs @@ -4,7 +4,7 @@ namespace PythonInterop { public class AIModule { - public AIModule(string PythonPath = "/usr/lib/libpython3.11.so") { + public AIModule(string PythonPath = "/usr/local/lib/libpython3.11.so") { // Use the user provided python runner Runtime.PythonDLL = PythonPath;