欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Google app engine for pythone(gae)window环境搭建以及遇到的问题

程序员文章站 2022-03-24 17:21:44
...

1.下载相关的软件

 

Google app engine sdk https://developers.google.com/appengine/downloads

 

python 2.5 (不能使用最新的3,因为目前gae只支持2.7或2.5)

 

2.创建helloworld

 

根据https://developers.google.com/appengine/docs/python/gettingstarted/helloworld官方的说明建立helloworld项目

 

3.在本地发布helloworld

这个过程我遇见2个问题:

3.1.python版本的问提,之前因为装的是python3.2所以在发布的时候出现了一个方法没定义


Google app engine for pythone(gae)window环境搭建以及遇到的问题
            
    
    博客分类: python Google app enginegaepythonhelloworldwindow

3.2 使用google app engine launcher没办法发布


Google app engine for pythone(gae)window环境搭建以及遇到的问题
            
    
    博客分类: python Google app enginegaepythonhelloworldwindow

看起来没什么错误,但就是没办法访问。不想把时间浪费在无谓的地方就没找原因了。

 

最后直接在cmd自己敲发布命令


Google app engine for pythone(gae)window环境搭建以及遇到的问题
            
    
    博客分类: python Google app enginegaepythonhelloworldwindow
 cd C:\Program Files\Google\google_appengine

 

dev_appserver.py -p 8080 D:\head_first_python\helloworld

 

参数说明:

-p 是端口号

D:\head_first_python\helloworld 是helloworld项目的路径

 

 

 

  • Google app engine for pythone(gae)window环境搭建以及遇到的问题
            
    
    博客分类: python Google app enginegaepythonhelloworldwindow
  • 大小: 21 KB
  • Google app engine for pythone(gae)window环境搭建以及遇到的问题
            
    
    博客分类: python Google app enginegaepythonhelloworldwindow
  • 大小: 39.7 KB
  • Google app engine for pythone(gae)window环境搭建以及遇到的问题
            
    
    博客分类: python Google app enginegaepythonhelloworldwindow
  • 大小: 45.3 KB