gpt4 book ai didi

google-cloud-platform - Google 云 SDK 安装错误 : Could not update [/Users/username/. bash_profile]。确保您对此位置有写权限

转载 作者:行者123 更新时间:2023-12-04 13:43:35 25 4
gpt4 key购买 nike

安装 Google Cloud sdk 时出现上述错误。

我在终端输入以下命令:

curl https://sdk.cloud.google.com |猛击

谢谢

最佳答案

TL;DR(分两步复制和粘贴,)

第 1 步(gcloud 会提示输入):

sudo chown $(whoami):staff ~/.bash_profile
curl https://sdk.cloud.google.com | bash

第2步:
sudo chown root:staff ~/.bash_profile
source ~/.bash_profile

解释:
~/.bash_profileroot 所有用户,所以它需要 sudo因此是root密码。命令 curl https://sdk.cloud.google.com | bash没有权限编辑它。我的解决方案是更改文件的所有权以安装 gcloud然后将其恢复为 root安装完成后。
  • 更改文件的所有权 sudo chown $(whoami):staff ~/.bash_profile
  • 此命令可能会提示输入密码
  • $(whoami)将被当前登录的用户替换。
  • staff只是已经存在的组
  • 运行安装命令并继续响应输入提示$ curl https://sdk.cloud.google.com | bash
  • 重置 root出于安全原因对配置文件的所有权sudo chown root:staff ~/.bash_profile
  • 重新加载 shell 以使 gcloud 命令可用 $ source ~/.bash_profile

  • 重要的提示

    我试过 sudo curl https://sdk.cloud.google.com | bash但由于某种原因它不起作用。

    关于google-cloud-platform - Google 云 SDK 安装错误 : Could not update [/Users/username/. bash_profile]。确保您对此位置有写权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53170381/

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