环境配置
1.创建虚拟环境
conda create -n yolov8 python=3.8
2.安装YOLOV8相关包
conda install -c conda-forge ultralytics
3.安装Pytorch
conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cudatoolkit=10.2 -c pytorch
此环境仅在GTX1660 Ti上测试过
BUG解决
1.AttributeError: module ‘distutils’ has no attribute ‘version’ 或者无法启用tensorboard
查看setuptools版本,发生此错误是因为 setuptools 版本59.6.0中的更改以某种方式中断了对 version 属性的调用。
解决办法: 删除现有的setuptools,安装旧版本
pip uninstall setuptools
conda install setuptools==58.0.4
删除旧版本时只能使用pip,避免删除与setuptools有关的包
https://zhuanlan.zhihu.com/p/556704117
https://blog.csdn.net/Alexa_/article/details/132686602