此问题在此处已有答案:
Running apt update
raises: "GPG error: cloud-sdk is not signed" [closed](1个答案)
20天前关闭。
我试图根据these instructions安装GCloud CLI,但遇到了问题。我的系统是Windows 10,但我使用的是Ubuntu 20.04的WSL 2。
我按照步骤2中的指示运行curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
,这很好。
sudo apt-get update && sudo apt-get install google-cloud-cli
字符串
失败,并出现以下情况:
Err:1 https://packages.cloud.google.com/apt kubernetes-xenial InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B53DC80D13EDEF05
型
我已经尝试了this SO post的公认答案,但无济于事。
我不知道还能做些什么,可以在这里做一些帮助。
1条答案
按热度按时间mm9b1k5b1#
正如建议的那样,解决方案是在this SO post中。在我的特定情况下,我只需要修改命令以使用sudo:
字符串
在此之后,
sudo apt-get update && sudo apt-get install google-cloud-cli
命令通过,我可以调用gcloud
。