源代码在安装pytorch旧版本时候,要用git选择旧版本的
ssudo git clone --recursive https://github.com/pytorch/pytorch
#这个命令会下载所有的版本源代码,有办法只下载指定版本,但是我没有试过
cd pytorch #进入到pytorch目录。该目录下有.git目录
git tag #显示各个版本
sudo git checkout v0.4.1 #选择版本
sudo git submodule update --init --recursive # 下载并更新第三方库,我们要保证需要的第三方库都下载完毕,不然在编译过程中会中断。
转载于:https://blog.51cto.com/leesbing/2360835