1.查看gpu版本
01:00.0 VGA compatible controller: NVIDIA Corporation GP107M [GeForce GTX 1050 Ti Mobile] (rev a1)
01:00.1 Audio device: NVIDIA Corporation GP107GL High Definition Audio Controller (rev a1)
2.显卡驱动
3.anaconda
- 可参考这里
- 为pytorch创建一个新的python环境:
conda create python39 python=3.9 - 如果需要将此环境设置为anaconda的默认进入的环境,可以在home文件夹下,Ctrl+h显示隐藏文件,.bashrc里面加入
conda activate python39 即可
4.安装pytorch
- 本来的cuda是11.7,但并没有与之对应的pytorch版本,选择下载cuda11.6对应的版本,网上的资料都说没有发现问题
- 官网,参考官网得到下载的命令:
conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch 但是换源后会报错 - 改成使用pip安装:
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
5.换源
- 国内清华镜像源地址,在里面找自己电脑的系统,将下面的地址做出响应的修改
pip3 install torch torchvision torchaudio --extra-index-url https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/linux-64/
Successfully installed charset-normalizer-2.1.1 idna-3.3 numpy-1.23.3 pillow-9.2.0 requests-2.28.1 torch-1.12.1+cu116 torchaudio-0.12.1+cu116 torchvision-0.13.1+cu116 typing-extensions-4.3.0 urllib3-1.26.12
6.验证
Python 3.9.13 (main, Aug 25 2022, 23:26:10)
[GCC 11.2.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import torch
>>> torch.cuda.is_available()
True
>>>
|