摘要: 1.安装python2.7.3 ,下载2.添加环境变量,如下图3.安装web.py,下载解压web.py的安装包,如下进入cmd,运行以下命令,web.py框架就安装好了4.测试一下web.py框架,编写test.py代码如下import weburls = ( '/', 'index')class index: def GET(self): return '<h1 style="color:red;">Hello, world!</h1>'if __name__ == "__main__&q 阅读全文
posted @ 2013-03-20 12:06 绿茶叶 阅读(3840) 评论(3) 推荐(1) 编辑