CSE4550-GroupProject 2021年SpringCSE 4550的回购 使用终端安装Flask(我正在使用Ubuntu Linux) pip install flask 从项目文件夹启动Flask Server: export FLASK_APP=dealership.py Windows: set FLASK_APP=dealership.py 调试模式:export FLASK_DEBUG = 1 Windows: set FLASK_DEBUG=1 运行应用程序: flask run NOTE: the default local IP did not work for me. I had to use: flask run --host 0.0.0.0. It will make the server externally visible. If the