Google 云控制台 "You do not have sufficient permissions to view this page"

Google Cloud Console "You do not have sufficient permissions to view this page"

我正在尝试通过单击 this page 上的 link 创建一个新的 VM。每当我点击时,我都会收到错误 "You do not have sufficient permissions to view this page"

我已经尝试了 here, here, and 的建议,到目前为止 none 已经解决了我的问题。

我认为问题不在于您的设置。这应该会尽快修复。

同时您可以使用 gcloud 命令创建深度学习 VM:

export IMAGE_FAMILY="tf-latest-cu92"
export ZONE="us-west1-b"
export INSTANCE_NAME="my-new-instance"
export INSTANCE_TYPE="n1-standard-8"
gcloud compute instances create $INSTANCE_NAME \
        --zone=$ZONE \
        --image-family=$IMAGE_FAMILY \
        --image-project=deeplearning-platform-release \
        --maintenance-policy=TERMINATE \
        --accelerator="type=nvidia-tesla-v100,count=1" \
        --machine-type=$INSTANCE_TYPE \
        --boot-disk-size=120GB \
        --metadata="install-nvidia-driver=True"

查看详情here