Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is google app engine sdk directory in windows?

Tags:

image

I am trying to setup app engine with Pycharm. But Pycharm is unable to detect Google app engine SDK directory.

What is wrong here? Please help.

like image 922
1alpha Avatar asked Nov 18 '16 00:11

1alpha


People also ask

How do I download Google App Engine SDK?

It simulates the run-‐time environment of the Google App Engine infrastructure. You can download the Google App Engine SDK by going to: http://code.google.com/appengine/downloads.html and download the appropriate install package.

How do I find my App Engine region?

Open the App Engine Dashboard in the Google Cloud console. The region appears near the top of the page.


1 Answers

Looks like you installed the Cloud SDK. So I think you need to know/do two things:

  1. Prior to configuring Pycharm, you'll need to get the Python App Engine component for the Cloud SDK. For most users, you'll be prompted for this as soon as you run gcloud app deploy or start the local development server (dev_appserver.py), but you wouldn't have run those yet, so do the following:

    gcloud components install app-engine-python
    
  2. After installing the component, you will now have the Python portion of the SDK, which is installed by default at the following path:

    C:\Users\<username>\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\
    

    Or on Mac:

     /Users/<username>/google-cloud-sdk/platform/google_appengin‌​e
    

    Add this as your App Engine SDK path to PyCharm.

like image 122
BrettJ Avatar answered Oct 20 '22 10:10

BrettJ