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.

21 lines
469 B

2 years ago
[![Ultralytics CI](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml/badge.svg)](https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml)
2 years ago
### Install
2 years ago
```bash
2 years ago
git clone https://github.com/ultralytics/ultralytics
cd ultralytics
2 years ago
python -m pip install --upgrade pip wheel
2 years ago
pip install . # (dev)
2 years ago
# pip install ultralytics (production)
2 years ago
```
2 years ago
2 years ago
### Usage
2 years ago
```python
2 years ago
import ultralytics
from ultralytics import HUB, YOLO
ultralytics.checks()
```