如何使用Process.start调用python脚本 [英] How to call python Script using Process.start

查看:459
本文介绍了如何使用Process.start调用python脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Process.start从C#.net调用Python脚本

How to call a Python Script from C#.net using Process.start

推荐答案

试试这个:

Try this:
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\"");


参考 run-a-python-script-from-c-sharp [ ^ ]


refer ...



link1

link2
refer...

link1
link2


这篇关于如何使用Process.start调用python脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆