Where is the Google App Engine SDK path on OSX?
I need to know for 开发者_StackOverflowcreating a Pydev Google App Engine Project in Eclipse.
/usr/local/google_appengine
- that's a symlink that links to the SDK.
/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine
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
精彩评论