主页
文章
分类
标签
关于
Fastapi的简单实验
发布于: 2025-11-16   更新于: 2025-11-16   收录于: Python , Fastapi
文章字数: 101   阅读时间: 1 分钟   阅读量:

实验环境

  • ubuntu20.04 server
  • python3.10

python环境配置

新建环境

这里为了方便实验,重新创建了一个虚拟环境(可以不用创建):

1
conda create -n py10 python==3.10

安装库

安装fastapi最基本的库:

1
2
pip install fastapi  # FastAPI 核心框架
pip install uvicorn  # 运行 FastAPI 的 ASGI 服务器(必须)