The solution to the problem of Unable to establish SSL connection when using wget to download

Error:
insert image description here
Reason: Some websites do not allow non-browser methods to download files

Solution: Add the following parameters after the wget statement

1

--no-check-certificate

1

wget https://dl.fbaipublicfiles.com/pythia/pretrained_models/textvqa/lorra_best.pth --no-check-certificate

insert image description here
Perfect solution!

Guess you like

Origin blog.csdn.net/weixin_43485035/article/details/121707349