博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

google app engine in linux

Posted on 2012-12-04 17:21  hebi  阅读(179)  评论(0)    收藏  举报

install gogent in ubuntu:

http://code.google.com/p/goagent/

follow struction on it, download goagent(5.4m), type:

  python uploader.zip

If there are error about gcc and module

when install python module, error: command 'gcc' failed with exit status 1. type this:

  sudo apt-get install python-dev

When it requires gevent or greenlet modules, type:

  sudo apt-get install python-gevent

  sudo apt-get install python-greenlet

I have also come up with the problem of permission deny even if use sudo, so I change the path of the install /usr limits to 777. The problem solved, but another error occured since my careless. See in another article in my blog.

ok