# agv_web **Repository Path**: xiaoyangjun123456/agv_web ## Basic Information - **Project Name**: agv_web - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-22 - **Last Updated**: 2024-10-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 网页端 ## HTML部分 ### 创建过程 - 输入!,然后输tab,创建基本格式 ## Python部分 ### 依赖 ```bash pip install -i https://mirrors.aliyun.com/pypi/simple/ Pillow pip install -i https://mirrors.aliyun.com/pypi/simple/ flask ``` ### 启动 ```bash cd /root/agv_web sudo chmod +x ./frps nohup python3 online_serve.py & nohup ./frps -c frpsnomachine.toml & ``` ### 停止进程/重新执行: - 停止网络服务 ``` ps aux | grep online_serve.py | grep -v grep | awk '{print $2}' | xargs kill -9 ``` - 停止frps同理 ``` ps aux | grep frps | grep -v grep | awk '{print $2}' | xargs kill -9 ```