📜  安装 fastapi - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:15.837000             🧑  作者: Mango

代码示例1
pip install fastapi
pip install uvicorn # ASGI server
pip install starlette # lightweight ASGI framework/toolkit
pip install pydantic # Data validation and type annotations
# OR
pip install fastapi uvicorn starlette pydantic