Curyous
Curyous

Reputation: 8866

Where is the Google App Engine SDK path on OSX?

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

Upvotes: 31

Views: 18276

Answers (3)

Curyous
Curyous

Reputation: 8866

/usr/local/google_appengine - that's a symlink that links to the SDK.

Upvotes: 60

Burhan Shakir
Burhan Shakir

Reputation: 237

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

Upvotes: 1

meckdahl
meckdahl

Reputation: 281

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

Upvotes: 28

Related Questions