# sniper **Repository Path**: linvaux/sniper ## Basic Information - **Project Name**: sniper - **Description**: python接口自动化框架 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-18 - **Last Updated**: 2024-08-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # sniper #### 介绍 python接口自动化框架,Python>=3.8 ### 使用 建议使用虚拟环境(conda/miniforge/venv)等,推荐使用 miniforge 安装,conda 部分版本会存在企业使用授权问题 1. 下载miniforge:https://github.com/conda-forge/miniforge 2. 安装后,配置.condarc中的清华源,配置方式跟 conda 一样:https://mirror.tuna.tsinghua.edu.cn/help/anaconda/ 3. 创建虚拟环境 ```bash mamba create -n sniper python=3.8 -y ``` 4. 激活虚拟环境 ```bash mamba activate sniper ``` 5. 安装依赖,参考:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/ ```bash pip install -r requirements -i https://pypi.tuna.tsinghua.edu.cn/simple ```