pyinstaller 发布fastapi 闪退

import uvicorn
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def root():
    return {"hello": "world"}

if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=8000)
posted @ 2024-09-08 22:03  China Soft  阅读(6)  评论(0编辑  收藏  举报