PyDev project for Google App Engine not finding webapp2

后端 未结 5 1367
囚心锁ツ
囚心锁ツ 2020-12-19 10:39

I am attempting to try out Google App Engine with python. Being familiar with Eclipse, I decided to use PyDev. After some trouble, I have a hello world program working...

5条回答
  •  自闭症患者
    2020-12-19 11:04

    The current SDK does not support the Python 2.7 runtime on the dev_appserver, so it doesn't bundle new libraries like webapp2. If all you need is the libraries, you can download them and include them in your app yourself, but if you need extra runtime features like multithreading and PIL, you will need to do your development in the production environment for now.

提交回复
热议问题