编程语言
首页 > 编程语言> > anconda对python环境的搭建细节

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

 

标签:AIWangZhe,python,pytorch,conda,anconda,install,3.8,搭建
来源: https://www.cnblogs.com/domefy/p/15680278.html