>백엔드 개발 >파이썬 튜토리얼 >IronPython 없이 C#에서 Python 스크립트를 어떻게 실행할 수 있나요?

IronPython 없이 C#에서 Python 스크립트를 어떻게 실행할 수 있나요?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-12-15 16:39:11351검색

How Can I Execute Python Scripts from C# Without IronPython?

C#에서 Python 스크립트 호출

IronPython과 같은 외부 라이브러리를 사용하지 않고도 C#에서 Python 스크립트를 실행할 수 있습니다. 이에 접근하는 방법은 다음과 같습니다.

다음 Python 스크립트(code.py)를 고려하세요.

if __name__ == '__main__':
    with open(sys.argv[1], 'r') as f:
        s = f.read()
    print(s)

C#에서 이 스크립트를 실행하려면 run_cmd 메서드를 다음과 같이 조정하세요.

private void run_cmd(string cmd, string args)
{
    ProcessStartInfo start = new ProcessStartInfo();

    // Specify the complete path to python.exe
    start.FileName = "my/full/path/to/python.exe";

    // Build the argument string with the script and file paths
    start.Arguments = string.Format("{0} {1}", cmd, args);

    // Disable using the shell to gain more control
    start.UseShellExecute = false;

    // Enable standard output redirection to capture the script's output
    start.RedirectStandardOutput = true;

    using (Process process = Process.Start(start))
    {
        using (StreamReader reader = process.StandardOutput)
        {
            string result = reader.ReadToEnd();
            Console.Write(result);
        }
    }
}

UseShellExecute를 false로 설정하면 Python에 전달된 명령과 인수를 제어할 수 있습니다. python.exe에 대한 전체 경로를 FileName으로 제공하고 스크립트 경로(cmd)와 읽을 파일 경로(args)를 모두 포함하도록 인수 문자열을 구성해야 합니다.

Python.exe의 전체 경로를 FileName으로 계속 호출해야 합니다. C#은 매번 새 프로세스를 만드는 오버헤드로 인해 성능에 영향을 미칠 수 있습니다. 스크립트에 상당한 런타임이 소요되는 경우 접근 방식을 최적화하거나 보다 적합한 프로세스 간 통신 메커니즘을 사용하는 것이 좋습니다.

위 내용은 IronPython 없이 C#에서 Python 스크립트를 어떻게 실행할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.