# PythonProject2 **Repository Path**: yhr577/python-project2 ## Basic Information - **Project Name**: PythonProject2 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-14 - **Last Updated**: 2026-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 1、查看pip安装的软件版本 pip show flask pip list | grep -E "pymysql|python-dotenv" 2、安装gunicorn # 用于运行 Flask 应用,适用linux系统 pip install gunicorn # 如果以后需要部署到 Windows,可以额外安装: pip install waitress # 语法: gunicorn -w <进程数> -b <绑定地址> <模块名>:<应用变量> gunicorn -w 4 -b 127.0.0.1:5000 main:app