我正在做一个项目,使用 python 作为后台脚本,使用 C# 作为家伙。我的问题是我不知道如何让我的 GUI 自动搜索文件pythonw.exe以运行我的 python 脚本。
目前我正在使用这条路径:
ProcessStartInfo pythonInfo = new ProcessStartInfo(@"C:\\Users\\Omri\\AppData\\Local\\Programs\\Python\\Python35-32\\pythonw.exe");
Run Code Online (Sandbox Code Playgroud)
但我希望它自动检测路径pythonw.exe(我需要提交项目,它不会在其他计算机上运行,除非他们更改代码本身)
任何建议可能会有帮助。