You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
384 B
15 lines
384 B
[![Ultralytics CI](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml/badge.svg)](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml)
|
|
|
|
### Usage
|
|
|
|
```bash
|
|
python -m pip install --upgrade pip wheel
|
|
python -m pip install . # (dev)
|
|
# pip install ultralytics (production)
|
|
|
|
import ultralytics
|
|
from ultralytics import HUB, YOLO
|
|
|
|
ultralytics.checks()
|
|
```
|