本文介绍了如何使用Process.start调用python脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用Process.start从C#.net调用Python脚本
How to call a Python Script from C#.net using Process.start
推荐答案
Process.Start("yourPythonInterpreter.exe", "file.py");
如果您没有Python解释器,那么你需要安装它。如果Python文件的路径包含空格,则需要将其放入引号:
If you don't have a Python interpreter, then you need to install it. And if the path to your Python file contains spaces, then you need to put it into quotes:
Process.Start("yourPythonInterpreter.exe", "\"file with spaces.py\"");
这篇关于如何使用Process.start调用python脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!