关于flask的错误:ImportError: cannot import name 'Flask'
刚接触Flask的时候,运行python脚本如下:from flask import Flaskapp = Flask(__name__)@app.route("/")def index(): return "index page"@app.route("/hello")def hello(): return "hello"if __name__ == "...
原创
2019-09-24 11:36:27 ·
12301 阅读 ·
2 评论