官网下载Pytorch
文章图片
执行如下命令安装Pytorch
conda install pytorch torchvision torchaudio cpuonly -c 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
# reference
# https://mirror.tuna.tsinghua.edu.cn/help/anaconda/
$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
最后,运行如下命令,即可快速安装完毕!!!
$ conda install pytorch torchvision torchaudio cpuonly
【Pytorch|Pytorch快速安装【清华源】】
推荐阅读
- pytorch|如何查看torch版本
- Pytorch|各类损失函数-pytorch
- ubuntu|win11 使用wsl2安装pytorch 梳理
- PyTorch|PyTorch搭建CNN实现时序预测(风速预测)
- 时间序列分析(Time|【时序预测完整教程】以气温预测为例说明论文组成及PyTorch代码管道构建
- #|自然语言处理系列(二)——使用RNN搭建字符级语言模型
- pytorch|pytorch_lesson16.1 OpenCV索贝尔算子/拉普拉斯算子调用+pytorch中构建cnn+复现经典模型(LeNet5+AlexNet)
- CV|【PyTorch1.0】torchvision文档翻译(四)——torchvision.transforms
- 深度学习|YOLOV5部署全系列教程(1)