本文所有需要的资源下载:
https://download.youkuaiyun.com/download/2301_79536161/89804297
一、安装visual studio
yolo开发过程中需要用到c和c++的相关库和工具,所以先安装visual studio,比如visual studio 2022社区版。直接官网下载安装即可,安装过程中注意把C++相关内容打钩。
二、安装文件搜索工具
这里推荐使用everything工具,启动后可以快速全局搜索文件,后面需要用它来快速查找我们需要的工具。
三、安装miniconda
1、下载安装
直接官网下载安装
2、安装成功后,开始菜单启动Anaconda Prompt
3、添加清华的镜像仓库:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls true
4、初始化
conda init
5、创建虚拟环境(注意yolo对python版本的要求)
conda create -n myYoloEn