Where is the Google App Engine SDK path on OSX?

Question:

I need to know for creating a Pydev Google App Engine Project in Eclipse.

Asked By: Curyous

||

Answers:

/usr/local/google_appengine – that’s a symlink that links to the SDK.

Answered By: Curyous

/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine

Answered By: meckdahl

For MAC OS

Instead of installing from the cloud.google website, install the sdk with brew

brew cask install google-cloud-sdk

After that install the python componenents :

gcloud components install app-engine-python

In pycharm set the path to :

/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/platform/google_appengine

This might be different for different users but make sure to select the google_appengine from the platform folder and it should work like a charm

Answered By: Burhan Shakir