创建pytorch(gpu)虚拟环境并在jupyter notebook中打开

1、创建虚拟环境

conda create -n pytorch python=3.9.7

2、根据自己显卡的版本安装pytorch

官网链接PyTorch

创建pytorch(gpu)虚拟环境并在jupyter notebook中打开_第1张图片

选择自己的配置,然后直接复制代码,需要过去版本的点左下角的过去版本。

我自己的版本是11.4,安装的11.3。

3、安装jupyter notebook

conda install ipykernel
python -m ipykernel install --name labelme

我自己的安装过程中没有出现问题,有别的问题的话我会再更新。

额外:

在使用过程中,遇到的缺少的库的安装:

#matplotlib
conda install matplotlib

#cv2
pip3 install opencv-python

你可能感兴趣的:(pytorch,jupyter,python)