[TOC]
libtorch_URLs
1 | libtorch 1.0.0 |
Source Build
1 | git clone --recursive https://github.com/pytorch/pytorch # --recursive表示下载子模块,但有些模块很难下载下来,可以先用 git clone https://github.com.cnpmjs.org/pytorch/pytorch |
克隆下来的是最新版本,执行git tag
查看分支,然后git checkout branch_name
切换到想要的分支,
1 | git checkout v1.7.1-rc3 |
注意:如果下载比较慢或者报错,可以在pytorch目录下查看.gitmodules
文件, 切换分支后先把里面网址替换为github加速插件的地址, 然后再执行git submodule sync 和 后面的命令
1 | git config --global --unset http.proxy |