2

Just starting to use Google Cloud Platform. Trying to familiarize myself with tensorflow and am following the Stack Skills tutorial Machine Learning and TensorFlow on the Google Cloud. I am using the gcloud console on firefox and following the tutorial I use the commands

  • gcloud config set core/project my-first-project
  • gcloud config set compute/zone us-central1-f
  • datalab create --no-create-repository tensorflow

but I keep getting this error and haven't been able to find a solution that fixes it on the web.

ERROR: (gcloud.compute.networks.create) Could not fetch resource: - Failed to find project my-first-project

A nested call to gcloud failed.

Any ideas or solutions whats going on or what I'm doing wrong?

robsiemb
  • 6,157
  • 7
  • 32
  • 46
Liam
  • 21
  • 3

1 Answers1

0

It is likely that "my-first-project" does not exist as a project that your account has access to. You need to create the project first either through the console, or via the command line:

gcloud projects create my-first-project
robsiemb
  • 6,157
  • 7
  • 32
  • 46