Linux 命令行下载软件
最近跑模型需要下载,发现 python torch 自带的下载慢得跟乌龟一样,只能自己手动下载,这里记录一下。
下载文件:
https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
服务器:深研院某服务器
Linux 自带的 wget:
wget https://download.pytorch.org/models/vit_h_14_swag-80465313.pth ~/
自带的 curl:
curl -o ~/vit_h_14_swag-80465313.pth https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
axel
需要安装,可以用 sudo apt install axiv
但我账户没 root 权限,所以用 conda install -c conda-forge axel
axel -o ~/ https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
axel 加上 -N
可以断点续传
aria2
下载方式同上
sudo apt install aria2
conda install -c conda-forge aria2
aria2c -d ~/ https://download.pytorch.org/models/vit_h_14_swag-80465313.pth
aria2 自带断点续传
速度来说好像都差不多,看网络波动。
比较尴尬的是最后我发现 python 自己的下载速度也回来了,估计是当时服务器上有别人也在搞下载。。。
转载注意标注出处:
转自Cold_Chair的博客+原博客地址