lscena
lscena

Reputation: 409

How to get an old Google App Engine SDK version

I'm having exactly the same problem like this one: google-app-engine 1.9.19 deploy failure

Please, someone can explain me how to get an older version of GAE's SDKs? In this particular case I need the version 1.9.18 for Python.

Upvotes: 5

Views: 1756

Answers (1)

marianosimone
marianosimone

Reputation: 3606

Most versions should be available in the Deprecated page

If the particular version you are trying to get is not there, you could always play around with the Download URLs, to get the one you need.

For example:

https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.19.zip

Can be modified to:

https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.18.zip

Upvotes: 8

Related Questions