如何在Powershell中检查和比较Python版本

时间:2015-04-15 10:59:49

标签: python powershell version

我试图通过Powershell检查并仅允许某些版本的Python。我正在获取当前的Python版本,但我无法检查,例如如果版本低于2.7,但不是3。

编辑:在另一个SO问题中找到,我使用了一个不提供数字结果的简单返回。它是& python -V 2>&1

1 个答案:

答案 0 :(得分:0)

如:

If(($PythonVersion -gt 2.7) -and ($PythonVersion -lt 3))
{
  Do Something
}
Else
{
  Report Failure
}

你真的需要包含你的代码..