Reputation: 8866
I need to know for creating a Pydev Google App Engine Project in Eclipse.
Upvotes: 31
Views: 18276
Reputation: 8866
/usr/local/google_appengine
- that's a symlink that links to the SDK.
Upvotes: 60
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
Reputation: 281
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine
Upvotes: 28