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 a8ce9df commit 6f39ddaCopy full SHA for 6f39dda
DSPythonNet3/DSPythonNet3Evaluator.cs
@@ -333,11 +333,10 @@ 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))
+ var disableEmbedded = !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("DYN_DISABLE_PYNET_EMBEDDED"));
+ if (disableEmbedded)
339
{
340
- Python.Included.PythonEnv.DeployEmbeddedPython = true;
+ Python.Included.PythonEnv.DeployEmbeddedPython = false;
341
342
343
Python.Included.Installer.SetupPython().Wait();
0 commit comments