GCP: AI Platform Notebooksの作成時のエラー対応
以下を参考に、ノートブックインスタンスを作成しました。
gcloud notebooks instances create example-instance \
--vm-image-project=deeplearning-platform-release \
--vm-image-family=pytorch-1-7-cu110-notebooks \
--machine-type=n1-standard-4 \
--location=us-central1-a \
--boot-disk-size=100 \
--accelerator-core-count=1 \
--accelerator-type=NVIDIA_TESLA_T4 \
--install-gpu-driver \
--network=default
この時、以下のエラーにより、ノートブックインスタンスを作成できませんでした。
ERROR: (gcloud.notebooks.instances.create) The zone 'projects/{project}/zones/us-central1-a' does not have enough resources available to fulfill the request. '(resource type:compute)'.
そのため、location
をus-central1-a
からus-central1-b
に変更したところ、インスタンスを作成することができました。
gcloud notebooks instances create example-instance \
--vm-image-project=deeplearning-platform-release \
--vm-image-family=pytorch-1-7-cu110-notebooks \
--machine-type=n1-standard-4 \
--location=us-central1-b \
--boot-disk-size=100 \
--accelerator-core-count=1 \
--accelerator-type=NVIDIA_TESLA_T4 \
--install-gpu-driver \
--network=default
他の方の参考になりましたら幸いです。
Author And Source
この問題について(GCP: AI Platform Notebooksの作成時のエラー対応), 我々は、より多くの情報をここで見つけました https://zenn.dev/nakamura196/articles/0ff536f8f4275d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol