This started after I ran the latest gcloud update:
gcloud components update
I used to be able to deploy my app something like this:
appcfg.py update app.yaml
Now I get:
appcfg.py: command not found
Is there a new gcloud
command for deploying App Engine apps?
in my case, i needed to run the following:
using
gcloud app deploy --project project-appengine-id
You'll need to have a billing accountgcloud app deploy
is the preferred way when usinggcloud
. If you download the stand alone Google App Engine SDK, then you will haveappcfg.py
available.https://cloud.google.com/sdk/gcloud/reference/app/deploy
It appears the most recent version of gcloud dropped
appcfg.py
from thebin
directory.I found the
appcfg.py
script under theplatform
directory:By linking it back to the
bin
directory, I was able to restore the command.Credit to this post for helping me to figure this out.