mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 21:44:22 +08:00

Co-authored-by: Ayush Chaurasia <ayush.chuararsia@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
21 lines
469 B
Markdown
21 lines
469 B
Markdown
[](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml)
|
|
|
|
### Install
|
|
|
|
```bash
|
|
git clone https://github.com/ultralytics/ultralytics
|
|
cd ultralytics
|
|
python -m pip install --upgrade pip wheel
|
|
pip install . # (dev)
|
|
# pip install ultralytics (production)
|
|
```
|
|
|
|
### Usage
|
|
|
|
```python
|
|
import ultralytics
|
|
from ultralytics import HUB, YOLO
|
|
|
|
ultralytics.checks()
|
|
```
|