# fastapi-demo **Repository Path**: kubernete/fastapi-demo ## Basic Information - **Project Name**: fastapi-demo - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-23 - **Last Updated**: 2025-09-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 使用Python python 3.12 ```bash # 创建python 3.12环境 conda create --name py312 python=3.12 # 激活 python 3.12 环境 conda activate py312 # 退出 环境 conda deactivate ``` # 依赖管理 ```bash pip freeze > requirements.txt pip install -r requirements.txt # 安装基础依赖 pip install --upgrade pip setuptools wheel ```