Powershell - Set-alias 不接受参数 - python

Powershell - Set-alias 不接受参数 - python

按照此教程我想为 python autopep8 设置一个别名。描述的语法是。

Set-Alias gs Get-Service <enter>

因此,复制我已经完成的格式。

PS C:\Users\sayth> Set-Alias a8 autopep8 --in-place --aggressive --aggressive

但是我收到一个错误

Set-Alias : A positional parameter cannot be found
that accepts argument '--in-place'.
At line:1 char:1
+ Set-Alias a8 autopep8 --in-place --aggressive
--aggressive
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:)
   [Set-Alias], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNo
   tFound,Microsoft.PowerShell.Commands.SetAliasCo
  mmand

使用参数设置别名的正确方法是什么?

相关内容