首页 > 解决方案 > 在 Ubuntu 18 上安装 gcloud / gsutil

问题描述

希望将一些存储桶从 AWS S3 迁移到 Google Cloud Storage,但在我的 Ubuntu 18.04.4 VM 上安装 GCP 工具时运气不佳。

遵循本指南:[ https://cloud.google.com/storage/docs/gsutil_install#deb][1]

主要被困在这里:

root@ubuntu18:/home/me# apt install google-cloud-sdk
Reading package lists... Done
Building dependency tree       
Reading state information... Done

No apt package "google-cloud-sdk", but there is a snap with that name.
Try "snap install google-cloud-sdk"

E: Unable to locate package google-cloud-sdk

标签: ubuntugoogle-cloud-platformubuntu-18.04apt

解决方案


您是否先添加了 Google Cloud SDK URI?

# Add the Cloud SDK distribution URI as a package source
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk 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 --keyring /usr/share/keyrings/cloud.google.gpg add -

# Update the package list
sudo apt-get update

# Install the Google Cloud SDK
sudo apt-get install google-cloud-sdk

推荐阅读