gpt4 book ai didi

aws-cli - 我尝试安装 aws 命令行工具

转载 作者:行者123 更新时间:2023-12-01 00:47:35 25 4
gpt4 key购买 nike

我尝试安装 aws 命令行工具来运行命令

aws

在 linux 上

我尝试使用 pip 安装它,但出现错误
http://docs.aws.amazon.com/cli/latest/userguide/installing.html#install-bundle-other-os
/bin/aws: Permission denied

每当我运行命令时
aws help 

我该怎么办?

最佳答案

ls -l /bin/aws的输出显示:

-rw-r--r--. 1 root root 814 Oct 22 18:09 /bin/aws

这意味着您有读/写权限,但没有执行权限。要解决这个问题,你必须运行 chmod像这样:
chmod 755 /bin/aws

在此之后 ls -l /bin/aws 的输出应该显示:
-rwxr-xr-x. 1 root root 814 Oct 22 18:09 /bin/aws
x意味着你现在也有执行权限。其他用户也将具有执行权限。如果没有其他限制,其他用户也可以执行。

关于aws-cli - 我尝试安装 aws 命令行工具,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33287739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com