【pytorch】安装记录

先在navigator里创建pytorch环境,在终端中进行Pytorch的安装。 

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda install pytorch torchvision torchaudio cpuonly

使用以上代码进行从清华源安装pytorch CPU版本

测试pytorch的安装

import torch
torch.randn(3,5)

安装库

exit()
pip install pandas matplotlib notebook -i https://pypi.doubanio.com/simple

 

你可能感兴趣的:(pytorch)