# py-vue-ws-camera **Repository Path**: l5769389/py-vue-ws-camera ## Basic Information - **Project Name**: py-vue-ws-camera - **Description**: 公司的通过vue连接python采集的摄像头视频 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-08 - **Last Updated**: 2025-04-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flask 启动 ``` python ./router.py ``` # 打包命令 ``` Pyinstaller -F ./router.py ``` # WSGI 启动 ``` gunicorn router:app -b 192.168.1.122:8888 ``` # 创建 venv 环境 ``` python -m venv venv # 安装依赖 ``` pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com ``` ```