# YoloV8 學習筆記
Step 1: create a folder named “YoloV8_Testing”
Step 2: Download practice image datasets from [Dollar Bill Detection](https://universe.roboflow.com/models/object-detection)
Step 3: Open folder in VS Code
Step 4: Create conda environment named "yolov8_Project" with python version 3.11




Step 5: install following packages
:::info
for Mac OS
```shell=
conda install conda-forge::ultralytics
```


```shell=
python3 -m pip install ultralytics
```

```shell=
conda install torch
```
```shell=
python3 -m pip install torch
```
:::
:::warning
for Windows OS
```shell=
conda install conda-forge::ultralytics
```
:::
## Reference
1. [yolov8 Instance Segmentation](https://docs.ultralytics.com/tasks/segment/)
2. [How to segment Objects with YOLOv8](https://medium.com/@Mert.A/how-to-segment-with-yolov8-f33b1c63b6c6)