anconda对python环境的搭建细节

一、创建一个 python为3.8.10的 环境 名称为 AIWangZhe

conda create --name AIWangZhe python=3.8.10

 

//激活 AIWangZhe环境

conda activate AIWangZhe

 

二、安装 其他各种环境包的细节

1、安装 pytorch(CPU)版本

官网:https://pytorch.org/

conda install pytorch torchvision torchaudio cpuonly -c pytorch

 

2、import cv2    报错解决办法

pip install opencv-python

 

上一篇:【Yolact数据集制作-labelme使用与转coco详解】


下一篇:ubuntu安装annaconda和创建python环境