我想通过PowerShell脚本(不在PowerShell窗口中)运行python脚本,因为我需要Microsoft Flow才能稍后计划Powershell脚本。在PowerShell窗口中,它与python test.py
一起使用。
我已经用Google搜索了一些解决方案。最接近的是:
$path = '\\test'
$file = 'test.py'
$cmd = $path+"\\"+$file # This line of code will create the concatenate the path and file
Start-Process $cmd
但是此命令仅打开我的Pycharm,而无需执行代码。请帮我解决一下这个。提前致谢。