我已经使用powershell脚本安装了aws
$command = "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12"
Invoke-Expression $command
Invoke-WebRequest -Uri "https://awscli.amazonaws.com/AWSCLIV2.msi" -Outfile C:\AWSCLIV2.msi
$arguments = "/i `"C:\AWSCLIV2.msi`" /quiet"
Start-Process msiexec.exe -ArgumentList $arguments -Wait
aws --version
字符串
当我尝试打印aws --version
时,它给出了下面的错误。
aws : The term 'aws' is not recognized as the name of a cmdlet, function,
script file, or operable program. Check the spelling of the name, or if a path
was included, verify that the path is correct and try again.
At line:1 char:1
+ aws
+ ~~~
型
2条答案
按热度按时间icomxhvb1#
我能够通过在安装AWS服务器后添加下面的一行来解决这个问题:
字符串
完整代码:
型
aemubtdh2#
我在我的Windows操作系统上遇到了同样的问题,在从aws official website安装**.msi文件之后。现在只需将安装的aws安装程序
AWSCLIV2
的PATH**传递到system environment variable
就可以解决这个问题,默认情况下,我是C:\Program Files\Amazon\AWSCLIV2
,你可以做同样的事情,但如果你在安装时自定义了路径,那么就使用你的路径。