为什么会这样?它不会接受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
答案 0 :(得分:1)
当Powershell和Python混合时会发生这种情况。在这种特殊情况下,您在Python脚本中使用Powershell命令或将其键入Python解释器。 Python并不了解Set-Location
命令,所以它会抱怨。