# Rolling-In-The-Deps **Repository Path**: deepin-autotest/rolling_in_the_deps ## Basic Information - **Project Name**: Rolling-In-The-Deps - **Description**: 可离线、易复用、轻管理的依赖管理系统 - **Primary Language**: Python - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2024-12-02 - **Last Updated**: 2025-02-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Rolling-In-The-Deps 可离线、易复用、轻管理的依赖管理系统 ## 安装 将 `Rolling-In-The-Deps` 项目代码克隆到 `你的项目根目录` 下: ```bash cd my_project/ git clone https://gitee.com/deepin-autotest/rolling_in_the_deps.git ``` ```shell my_project ├── rolling_in_the_deps │   ├── __init__.py │   ├── LICENSE │   ├── README.md │   ├── roll.py │   └── src │   ├── __init__.py │   ├── __version__.py │   ├── config.py │   ├── main.py │   ├── opencv.py │   └── cli.py ``` ## 使用说明 ### 打包 在打包环境下执行,打包构建当前环境,会在当前目录下生成一个 `tar.gz` 格式的环境依赖包。 ```bash python3 rolling_in_the_deps/roll.py build ``` ### 拆包-构建环境 在测试环境下执行。 ```bash # 默认在当前目录下自动寻找 tar 包 python3 rolling_in_the_deps/roll.py unpack ``` 可选参数 `-p` 指定 tar 包路径。 ```bash python3 rolling_in_the_deps/roll.py unpack -p /path/to/env.tar.gz ```