I\'m deploying a simple Python 3 App Engine App (Flexi environment) by issuing following command: gcloud app deploy --version=ver0-1
gcloud app deploy --version=ver0-1
and getting followi
Solved this by running the following :
1. `gcloud config unset project` 2. `gcloud config set project PROJECT_ID`
where PROJECT_ID is your project id,
to see the correct project id, you may want to run gcloud projects list.
gcloud projects list
SOLVED! Was using project name instead of ID