Skip to content

Commit d42fa75

Browse files
authored
CVPR 2021 Argoverse-HD autodownload curl (ultralytics#2455)
curl preferred over wget for slightly better cross platform compatibility (i.e. out of the box macos compatible).
1 parent 0d8abd4 commit d42fa75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/scripts/get_argoverse_hd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ d='../argoverse/' # unzip directory
1212
mkdir $d
1313
url=https://argoverse-hd.s3.us-east-2.amazonaws.com/
1414
f=Argoverse-HD-Full.zip
15-
wget $url$f -O $f && unzip -q $f -d $d && rm $f &# download, unzip, remove in background
15+
curl -L $url$f -o $f && unzip -q $f -d $d && rm $f &# download, unzip, remove in background
1616
wait # finish background tasks
1717

1818
cd ../argoverse/Argoverse-1.1/

0 commit comments

Comments
 (0)