赞
踩
安装库时报错:
No CUDA runtime is found, using CUDA_HOME='/usr/local/cuda-11.3'
查看cuda版本和pytorch版本
python 进入python环境
import torch
torch.__version__
torch.cuda.is_available()
nvidia-smi
nvcc -V
因此发现是由于该虚拟环境中CUDA与torch的版本不对应,发现在安装虚拟环境的environment.yml文件中只有指定cuda版本,而没有自动安装正确的torch版本:
channels:
- pytorch
- conda-forge
dependencies:
- python
- cudatoolkit=11.3
重新安装torch,在 torch 官网中找到适配的版本,并安装
pip install torch1.12.1+cu113 torchvision0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu113
注意:尽量使用pip安装,因为conda安装后有时还是不会安装cuda对应版本
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。