eyeholle
eyeholle

Reputation: 13

App Engine is not supported for python 3 in pycharm

I want to create a google app engine project in pycharm. I select python 3, give my project a name. And it's written that App Engine is not supported for the selected interpreter I can choose python 2.7 and it is working but why can't I choose python 3.6? I even tried 3.5, same problem. However in official documentation it supports python 3.6... I'm sure I have installed google app flexible environment

I'll leave there a screen of pycharm just in case gdrive link

Upvotes: 0

Views: 936

Answers (1)

Dan Cornilescu
Dan Cornilescu

Reputation: 39834

AFAIK PyCharm's GAE support means:

  • ability to run/debug a GAE app project using the SDK's dev_appserver.py - which is only supported for the standard environment
  • ability to deploy on GAE using the SDK utilities - which not long ago didn't even support well apps with multiple standard environment services - I had to deploy my app manually.

In other words PyCharm doesn't offer real/significant benefits for the flexible env GAE apps, you'll have to complement it with manual ops or scripts anyways.

So I'd just create a regular python 3.5/3.6 project and simply not specify it's also a GAE project.

Upvotes: 2

Related Questions