标签: python block
我正在尝试在CMD下运行hello.py,但是当我运行烧瓶时,我在下面收到此错误,我该如何解决?
enter image description here
答案 0 :(得分:0)
您只需缩进return 'Hello World!'文件中的hello.py行。
return 'Hello World!'
hello.py
from flask import * app = Flask(__name__) @app.route('/') def hello_world(): return 'Hello, World!'
至少应该允许它编译