Reputation: 1443
I have created a project and uploaded it to google cloud using gcloud sdk. The machine I used for uploading is not working now. I am working on a different machine now.
How can I clone or download my previous project in gcloud sdk ?
I tried to download it using this documentation, but appcfg.py
is not found
I followed this tutorial to create a static website with html
Upvotes: 0
Views: 496
Reputation: 39824
It appears that appcfg.py
is no longer bundled by default into the more recent versions of the cloud SDK, it which case it needs to be installed separately. From Troubleshooting (emphasis mine):
If you use the
gcloud
commands from the Cloud SDK, theappcfg.py
command is available at the following path:[INSTALL_PATH]/google-cloud-sdk/platform/google_appengine/appcfg.py
If that path does not exist, run
gcloud components install app-engine-python
to install the App Engine SDK to your Cloud SDK installation.
Upvotes: 1