# PytorchYOLO **Repository Path**: hyper-ai-lab/pytorch-yolo ## Basic Information - **Project Name**: PytorchYOLO - **Description**: YOLO系统算法汇总 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-09 - **Last Updated**: 2025-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PytorchYOLO #### 介绍 YOLO系统算法汇总 ## 一、annocoda环境配置 1. pytorch==1.13.1版本环境配置 ``` # 创建环境并安装pytorch1.13.1版本 conda crate -n py310torch131 python==3.10.10 conda activate py310torch131 pip install torch==1.13.1+cu116 torchvision==0.14.1+cu116 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu116 ``` 2. 创建pytotch==2.6.0版本环境 ``` conda create -n py310torch26 python==3.10.10 conda activate py310torch26 pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 ``` ## 二、YOLO系列算法汇总 (1) YOLOv11 ``` git clone https://github.com/ultralytics/yolov5.git ```