cloud.google.com ドキュメントで次のスクリプトを実行しています。
# Create environment variable for correct distribution
export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"
# Add the Cloud SDK distribution URI as a package source
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud Platform public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
# Update the package list and install the Cloud SDK
sudo apt-get update && sudo apt-get install google-cloud-sdk
結果:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 653 100 653 0 0 3710 0 --:--:-- --:--:-- --:--:-- 3710
OK
Hit:1 http://ppa.launchpad.net/system76/pop/ubuntu eoan InRelease
Ign:2 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:3 http://dl.google.com/linux/chrome/deb stable Release
Hit:4 http://us.archive.ubuntu.com/ubuntu eoan InRelease
Ign:6 http://packages.cloud.google.com/apt cloud-sdk-eoan InRelease
Hit:7 http://us.archive.ubuntu.com/ubuntu eoan-security InRelease
Hit:8 http://apt.pop-os.org/proprietary eoan InRelease
Hit:10 http://us.archive.ubuntu.com/ubuntu eoan-updates InRelease
Hit:5 https://packages.cloud.google.com/apt kubernetes-xenial InRelease
Err:11 http://packages.cloud.google.com/apt cloud-sdk-eoan Release
404 Not Found [IP: 172.217.19.206 80]
Hit:12 http://us.archive.ubuntu.com/ubuntu eoan-backports InRelease
Reading package lists... Done
E: The repository 'http://packages.cloud.google.com/apt cloud-sdk-eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
どうすればこれを得ることができますか?