运行.py fin PowerShell(再次)

时间:2017-02-22 06:25:02

标签: python powershell

为什么会这样?它不会接受C:\

Set-Location C:\Python27\Tools\Scripts\pyscripts
             ^
SyntaxError: invalid syntax
>>> Set-Location c:\Python27\Tools\Scripts\pyscripts
File "<stdin>", line 1
Set-Location c:\Python27\Tools\Scripts\pyscripts
             ^
SyntaxError: invalid syntax

1 个答案:

答案 0 :(得分:1)

当Powershell和Python混合时会发生这种情况。在这种特殊情况下,您在Python脚本中使用Powershell命令或将其键入Python解释器。 Python并不了解Set-Location命令,所以它会抱怨。