# agent520 **Repository Path**: k8s-devops/agent520 ## Basic Information - **Project Name**: agent520 - **Description**: agent520 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-17 - **Last Updated**: 2025-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # agent520 ## 1. 安装依赖 ```sh pip install -r requirements.txt ``` ## 2. 运行 ```sh python setup.py install ``` ## 3. 配置 service Create a systemd service at `/etc/systemd/system/agent520.service` by adding the following: ```ini [Unit] Description=agent520 [Service] ExecStart=/usr/local/bin/agent520 User=agent520 [Install] WantedBy=multi-user.target ``` Run the following command: ```sh chmod 644 /etc/systemd/system/agent520.service systemctl daemon-reload systemctl enable agent520 systemctl start agent520 ```