1
私はパワーシェルGUIアプリケーションを持っています。私のアプリケーションの中で私はpythonスクリプトを呼び出します。私はpythonスクリプトの出力を表示したい。Powershellアプリケーションでpythonスクリプトの出力を使用するにはどうすればよいですか?
test.py版画 "Hello World" の
$dog.Add_Click({FixIndefinite})
$Form.Controls.Add($dog)
function FixIndefinite {
try { $outputBox.text = "Welcome"
python .\test.py
}
catch {$outputBox.text = "`nOperation could not be completed"}
は、あなたがこの$ cmdOutput = Pythonのような使用してみました。\ test.py –
これは、あなたのpython環境varibaleであることassunmingされます準備完了 ? –
申し訳ありません私はpowershellにはとても新しいです。 $ outputBox.text = python。\ test.pyありがとう! –