美文网首页
pytorch——cpu版本安装,anaconda及清华源镜像相

pytorch——cpu版本安装,anaconda及清华源镜像相

作者: 龙鹰图腾223 | 来源:发表于2020-08-10 10:24 被阅读0次

cpu版本的安装

1)准备工作:清华源下载所需版本的离线安装包

https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/

2)anaconda prompt安装

d:进入d盘,cd /XX/XX/XX 进入目标目录(安装包放的位置)

然后conda install XXXX.tar.bz2

(注意:.bz2的后缀如果不加上会影响安装)

方法2:

直接用pip 用官网的方法安装,如果只需要cpu版本,选择cuda:无的版本

pip install torch==1.5.1+cu92 torchvision==0.6.1+cu92 -f https://download.pytorch.org/whl/torch_stable.html

anaconda环境配置

1、anaconda 环境

查看目前已经存在的环境:conda env list 

创造一个虚拟环境:conda create -n your_env_name python=x.x 

激活或者切换虚拟环境:

Linux: source activate your_env_nam

Windows: activate your_env_name

设置国内镜像

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/

conda config --remove-key channels

conda config --show channels

参考文献

【1】https://zhuanlan.zhihu.com/p/94744929    Anaconda-用conda创建python虚拟环境

【2】https://www.jb51.net/article/180523.htm    windows系统快速安装pytorch的详细图文教程

相关文章

网友评论

      本文标题:pytorch——cpu版本安装,anaconda及清华源镜像相

      本文链接:https://www.haomeiwen.com/subject/rmxzcktx.html