Using python files with libraries in Visual Studio
问题 I want to use some python files in a Visual Studio WPF application, using this code. var ipy = Python.CreateRuntime(); dynamic test = ipy.UseFile("Test.py"); string whatever = test.pythonString() MessageBox.Show(whatever); where Test.py looks like this: def pythonString: return "Whatever" everything works as expected but if I add any import like from moviepy.editor import * to the python code the messagebox doesn't appear. Why does this happen and what do I have to change in order to make