3

我刚刚安装了Flask,并试图用他们的示例快速测试它,但它不起作用。

到目前为止我有这个:

你好.py

from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello World!'

if __name__ == '__main__':
    app.run()

然后我运行:

@ubuntu:~/repo/test/flask$ python hello.py 
* Running on http://127.0.0.1:5000/

当我连接到 localhost:5000/ 甚至是 url 的任何变体时,它都会返回

<HTML>
<HEAD><TITLE>Redirection</TITLE></HEAD>
<BODY><H1>Redirect</H1></BODY>

我 99% 确定我已经安装了所有东西,python 2.6.5

4

1 回答 1

5

我很确定问题出在您的代理上。尝试检查$http_proxy,如果设置了此值,请unset http_proxy在运行开发服务器之前尝试执行:

有人在运行 rails 时遇到了同样的问题:
http ://railsforum.com/viewtopic.php?id=36621

于 2012-07-04T09:45:53.070 回答