161

このような質問は、これまでさまざまな程度で行われてきましたが、簡潔に答えられていないと感じたので、もう一度質問します。

Pythonでスクリプトを実行したい。これだとしましょう:

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

ファイルの場所を取得し、それを読み取り、その内容を出力します。それほど複雑ではありません。

では、これをC#で実行するにはどうすればよいですか?

これは私が今持っているものです:

    private void run_cmd(string cmd, string args)
    {
        ProcessStartInfo start = new ProcessStartInfo();
        start.FileName = cmd;
        start.Arguments = args;
        start.UseShellExecute = false;
        start.RedirectStandardOutput = true;
        using (Process process = Process.Start(start))
        {
            using (StreamReader reader = process.StandardOutput)
            {
                string result = reader.ReadToEnd();
                Console.Write(result);
            }
        }
    }

code.py場所をとして渡すcmdと、filename場所argsが機能しないため。python.exeとして、cmd次にcode.py filenameとして渡す必要があると言われましたargs

私はしばらく探していましたが、IronPythonなどの使用を提案している人しか見つかりません。ただし、C#からPythonスクリプトを呼び出す方法が必要です。

いくつかの説明:

C#から実行する必要があり、出力をキャプチャする必要があり、IronPythonなどを使用できません。あなたが持っているどんなハックでも大丈夫です。

PS:私が実行している実際のPythonコードはこれよりもはるかに複雑で、C#で必要な出力を返し、C#コードは常にPythonコードを呼び出します。

これが私のコードであるふりをします:

    private void get_vals()
    {
        for (int i = 0; i < 100; i++)
        {
            run_cmd("code.py", i);
        }
    }
4

8 に答える 8

148

それが機能しない理由は、あなたが持っているからですUseShellExecute = false

シェルを使用しない場合は、Python実行可能ファイルへの完全なパスをとして指定し、スクリプトと読み取りたいファイルの両方を提供する文字列をFileName作成する必要があります。Arguments

RedirectStandardOutputまた、。を除いてはできないことに注意してくださいUseShellExecute = false

引数文字列をPython用にフォーマットする方法はよくわかりませんが、次のようなものが必要になります。

private void run_cmd(string cmd, string args)
{
     ProcessStartInfo start = new ProcessStartInfo();
     start.FileName = "my/full/path/to/python.exe";
     start.Arguments = string.Format("{0} {1}", cmd, args);
     start.UseShellExecute = false;
     start.RedirectStandardOutput = true;
     using(Process process = Process.Start(start))
     {
         using(StreamReader reader = process.StandardOutput)
         {
             string result = reader.ReadToEnd();
             Console.Write(result);
         }
     }
}
于 2012-08-02T14:10:39.593 に答える
68

IronPythonを使用する場合は、C#で直接スクリプトを実行できます。

using IronPython.Hosting;
using Microsoft.Scripting.Hosting;

private static void doPython()
{
    ScriptEngine engine = Python.CreateEngine();
    engine.ExecuteFile(@"test.py");
}

ここでIronPythonを入手してください。

于 2012-08-02T14:54:12.380 に答える
36

CからPythonスクリプトを実行する

C#プロジェクトを作成し、次のコードを記述します。

using System;
using System.Diagnostics;
using System.IO;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            run_cmd();
        }

        private void run_cmd()
        {

            string fileName = @"C:\sample_script.py";

            Process p = new Process();
            p.StartInfo = new ProcessStartInfo(@"C:\Python27\python.exe", fileName)
            {
                RedirectStandardOutput = true,
                UseShellExecute = false,
                CreateNoWindow = true
            };
            p.Start();

            string output = p.StandardOutput.ReadToEnd();
            p.WaitForExit();

            Console.WriteLine(output);

            Console.ReadLine();

        }
    }
}

Python sample_script

「PythonC#テスト」を印刷する

C#のコンソールに「PythonC#テスト」が表示されます。

于 2016-05-11T11:55:05.023 に答える
18

私は同じ問題に遭遇しました、そして、マスター道徳の答えは私のためにそれをしませんでした。前の回答に基づく以下は、機能しました。

private void run_cmd(string cmd, string args)
{
 ProcessStartInfo start = new ProcessStartInfo();
 start.FileName = cmd;//cmd is full path to python.exe
 start.Arguments = args;//args is path to .py file and any cmd line args
 start.UseShellExecute = false;
 start.RedirectStandardOutput = true;
 using(Process process = Process.Start(start))
 {
     using(StreamReader reader = process.StandardOutput)
     {
         string result = reader.ReadToEnd();
         Console.Write(result);
     }
 }
}

例として、cmd行引数100を指定してtest.pyを実行する場合は、cmdは次のようになり@C:/Python26/python.exe、argsは次のようになります。.pyファイルのパスには@記号がないことに注意してください。C://Python26//test.py 100

于 2015-01-06T15:18:55.940 に答える
5

実際、Csharp(VS)とPythonをIronPythonで統合するのは非常に簡単です。それほど複雑ではありません...ChrisDunawayが回答セクションですでに述べたように、私は自分のプロジェクトのためにこの統合を構築し始めました。Nそのかなり単純です。これらの手順を実行するだけで、結果が得られます。

ステップ1:VSを開き、新しい空のConsoleAppプロジェクトを作成します。

手順2:[ツール]->[NuGetパッケージマネージャー]->[パッケージマネージャーコンソール]に移動します。

手順3:この後、ブラウザでこのリンクを開き、NuGetコマンドをコピーします。リンク:https ://www.nuget.org/packages/IronPython/2.7.9

手順4:上記のリンクを開いた後、PM> Install-Package IronPython -Version 2.7.9コマンドをコピーして、VSのNuGetコンソールに貼り付けます。サポートパッケージがインストールされます。

ステップ5:これは、Python.exeディレクトリに保存されている.pyファイルを実行するために使用したコードです。

using IronPython.Hosting;//for DLHE
using Microsoft.Scripting.Hosting;//provides scripting abilities comparable to batch files
using System;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Net.Sockets;
class Hi
{
private static void Main(string []args)
{
Process process = new Process(); //to make a process call
ScriptEngine engine = Python.CreateEngine(); //For Engine to initiate the script
engine.ExecuteFile(@"C:\Users\daulmalik\AppData\Local\Programs\Python\Python37\p1.py");//Path of my .py file that I would like to see running in console after running my .cs file from VS.//process.StandardInput.Flush();
process.StandardInput.Close();//to close
process.WaitForExit();//to hold the process i.e. cmd screen as output
}
} 

ステップ6:コードを保存して実行する

于 2019-01-31T13:44:56.217 に答える
3

WorkingDirectoryを設定するか、引数でPythonスクリプトのフルパスを指定します

ProcessStartInfo start = new ProcessStartInfo();
start.FileName = "C:\\Python27\\python.exe";
//start.WorkingDirectory = @"D:\script";
start.Arguments = string.Format("D:\\script\\test.py -a {0} -b {1} ", "some param", "some other param");
start.UseShellExecute = false;
start.RedirectStandardOutput = true;
using (Process process = Process.Start(start))
{
    using (StreamReader reader = process.StandardOutput)
    {
        string result = reader.ReadToEnd();
        Console.Write(result);
    }
}
于 2018-01-04T07:06:52.147 に答える
0

問題が発生していますstdin/stout-ペイロードサイズが数キロバイトを超えると、ハングします。いくつかの短い引数だけでなく、大きくなる可能性のあるカスタムペイロードを使用してPython関数を呼び出す必要があります。

少し前に、Redisを介してさまざまなマシンにタスクを分散できる仮想アクターライブラリを作成しました。Pythonコードを呼び出すために、Pythonからのメッセージをリッスンし、それらを処理して結果を.NETに返す機能を追加しました。 これがどのように機能するかについての簡単な説明です

単一のマシンでも機能しますが、Redisインスタンスが必要です。Redisはいくつかの信頼性保証を追加します-ペイロードは、workedが完了を確認するまで保存されます。作業者が死亡した場合、ペイロードはジョブキューに戻され、別の作業者によって再処理されます。

于 2016-12-25T11:51:20.760 に答える
0

簡単です。アイアンパイソンが必要ですが、私が使用した方法は次のとおりです。

using IronPython.Hosting;

  var engine = Python.CreateEngine();

  engine.ExecuteFile("") //put the directory of the program in the quote marks
于 2021-12-31T22:59:41.567 に答える