Windows配yolov5环境

一、安装Visual Studio

下载Visual Studio 社区版
下载链接:https://visualstudio.microsoft.com/zh-hans/downloads/
安装时勾选“Python开发”和“C++桌面开发”

二、安装CMake

https://cmake.org/

三、安装Anaconda

https://www.anaconda.com/products/individual

四、创建虚拟环境

1、换源
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 yes
2、新建虚拟环境
conda create -n yolov5 python=3.8
3、进入虚拟环境
conda activate yolov5
4、虚拟环境装pytorch和cudatoolkit

conda install pytorch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 cudatoolkit=11.1

五、安装依赖库

cd yolov5代码目录
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple

六、pycocotools无法直接安装

pip install cython
git clone https://github.com/philferriere/cocoapi.git
cd cocoapi/PythonAPI
python setup.py install --user

你可能感兴趣的:(人工智能,深度学习,计算机视觉)