We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5fe0d0 commit a8ce9dfCopy full SHA for a8ce9df
DSPythonNet3/DSPythonNet3Evaluator.cs
@@ -333,6 +333,13 @@ internal static void InstallPython()
333
Runtime.PythonDLL = Python.Included.Installer.PYTHON_VERSION + ".dll";
334
}
335
336
+
337
+ var disableEmbedded = Environment.GetEnvironmentVariable("DYN_DISABLE_PYNET_EMBEDDED");
338
+ if (!string.IsNullOrEmpty(disableEmbedded))
339
+ {
340
+ Python.Included.PythonEnv.DeployEmbeddedPython = true;
341
+ }
342
343
Python.Included.Installer.SetupPython().Wait();
344
isPythonInstalled = true;
345
0 commit comments